Screenshot

From Valve Developer Community
Revision as of 08:24, 28 March 2023 by Lxm6 (talk | contribs) (Horrible)
Jump to navigation Jump to search

A screenshot is a single rendered frame outputted to an image file. The Source engine can output JPEG (.jpg) and TGA (.tga) image formats.

JPEGs use lossy compression, which can cause compression artifacts at lower quality settings but take up significantly less space than TGAs. TGA images are uncompressed, meaning the saved image is identical to the rendered frame with no loss of quality, but the file size will be significantly larger.

The default screenshot key is F5. This will take a JPEG screenshot at quality 90 unless the console variable for quality is adjusted.

Screenshots are saved in the "screenshots" directory of the relevant game. By default, the naming scheme they use is "mapname####", with sequential numbering, for example "de_train0035".

Console commands

  • screenshot - Takes a TGA screenshot
  • cl_screenshotname "name" - The filename to save the next TGA screenshot with
  • jpeg - Takes a JPEG screenshot, at the quality defined by jpeg_quality
  • jpeg_quality ### - Compression quality to save the JPEG with, ranging from 1-100, with 100 being the best quality.
    Note.pngNote:This is reset to 90 every time the game is closed
Note.pngNote:The screenshot and jpeg commands take the screenshot immediately, displaying all current screen elements. In other words, if these commands are manually typed into the console, the screenshot will be of the console. To take a gameplay screenshot, the command should be bound to a key and the console closed.

See also

Broom icon.png
This article or section needs to be cleaned up to conform to a higher standard of quality because:
Poor and unclear wording, few links
For help, see the VDC Editing Help and Wikipedia cleanup process. Also, remember to check for any notes left by the tagger at this article's talk page.