WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
Advertisement

As of 2.1.0 WoW will default to saving your screenshots as .jpg, i.e. JPEG format. This will cut down file size but it will also destroy some detail due to JPG being a lossy format. People who want to change the format back to TARGA (TGA) will need to use the following command:

/console screenshotFormat tga 

You may also set the format to JPEG but change the quality (decreasing compression and increasing size) with the following commands:

/console screenshotFormat jpg 
/console screenshotQuality 10 

You can also look for and edit (or add) the 2 lines in config.wtf:

SET screenshotFormat "f"
SET screenshotQuality "q"

Where f is the format (jpg or tga) and q is the quality (1-10). Note the double quotes. The change will be reflected the next time you start the game.

Note that screenshotQuality only affects JPEG screenshots (TGA screenshots always use lossless quality). There are reports that an older version would compress the images to JPEG and then save them as TGA (causing a loss of quality) but this does not happen with the current patch. Also, note that anything other than "tga" in screenshotFormat sets it to the default (JPEG).

If you want to revert to the original settings you can use these commands:

/console screenshotFormat jpg 
/console screenshotQuality 3 

Optionally you can create an addon using the SetCVar or ConsoleExec API.

Examples[]

Some example screenshots
Screenshot JPG Quality-3

JPG with screenshotQuality 3 (standard) - 0.4 MB

Screenshot JPG Quality-10

JPG with screenshotQuality 10 - 2.27 MB

Screenshot TGA Quality

TGA compressed using PNG - 2.41MB(PNG) / 4.66MB(TGA)

Screenshotcomparison

comparison between the 3 examples (with zoom)

Notes[]

The last screenshot you have taken is also stored (in lossless, uncompressed format) in the system clipboard, even if you have the file format set to JPEG. It can be pasted from there into most image editing applications.

See Also[]

API Screenshot

Advertisement