Why convert TGA to JPG?
TGA files are large and almost no web browser or email client can open them directly. Converting to JPG cuts the file size dramatically and makes the image viewable anywhere. The trade-off is that JPG is lossy and has no transparency support, so if your TGA carries an alpha channel you should convert to .PNG instead.
How to convert TGA to JPG
IrfanView FREE
Open the .tga file, go to File > Save As, and choose JPG as the output type.
GIMP OPEN-SOURCE
Open the .tga via File > Open, then use File > Export As and save with a .jpg extension.
XnView MP FREE
Open or batch-import .tga files and export to JPEG via File > Export or Tools > Batch Convert.
Command line - ImageMagick CLI
Run magick convert input.tga output.jpg to convert a .tga file to .jpg.
Programs that convert TGA
About these formats
A TGA file is a Truevision Targa raster image, uncompressed or lightly RLE-compressed, widely used in game and video pipelines because it stores a clean alpha (transparency) channel. Open…
Open .TGA details →A JPG (also .jpeg) is a compressed photo or image in the JPEG format, standardized in 1992. Every operating system opens it natively - double-click and Windows Photos, macOS Preview, or…
Open .JPG details →Quality & what to watch
- Transparency is lost - TGA can carry an 8-bit alpha channel but JPG has no transparency support; transparent areas become solid (usually white). Convert to PNG if transparency matters.
- JPG is lossy - pixel data is permanently discarded on every save, so keep the original
.tgaif you may need to re-edit or re-export. - Some TGA files store rows bottom-to-top; most tools correct this automatically, but if the result appears flipped, flip the image vertically in your editor before saving.
Frequently asked questions
Does converting TGA to JPG lose quality?
Can I convert a TGA with transparency to JPG?
Why is my converted JPG upside down?
How do I batch-convert TGA files to JPG?
magick mogrify -format jpg *.tga in ImageMagick to process a whole folder at once.