How to Convert TGA to TIFF: Step-by-Step Tutorial
🚀 Ready to follow along? Open the TGA to TIFF converter now.
Open Tool →What This Tutorial Covers
This tutorial walks you through converting TGA (Targa) image files to lossless TIFF format using the browser-based tool on this site. No software installation is required. You will learn how to add files, understand the per-file status system, use batch ZIP download, detect alpha channels in your source files, and import the resulting TIFF into Photoshop or Lightroom.
For background on why you might want TIFF and when to use it, see the companion TGA to TIFF Complete Guide.
What You Need
- One or more
.tgafiles (from Blender, Maya, Unreal Engine, Unity, Photoshop, or any TGA-compatible tool) - A modern browser: Chrome, Edge, Firefox, or Safari (2023 or later)
- No account, no software, no subscription
Step 1: Open the Converter
Navigate to dataconversioncenter.com/image-tools/tga-to-tiff/. The page loads the JSZip library from CDN for ZIP download support — no install needed. The TGA parser and TIFF encoder are written in pure JavaScript and run entirely in your browser. No files are sent to any server at any point during the process.
Step 2: Add Your TGA Files
You have two ways to add files:
- Drag and drop: Open your file manager and drag one or more
.tgafiles directly onto the drop zone labeled "Drop TGA files here". The zone highlights in blue when you hover over it. - Browse: Click anywhere on the drop zone (or the "Browse Files" link) to open your file picker. Select multiple files using Ctrl+click (Windows) or Cmd+click (Mac).
As soon as files are added, the tool decodes each TGA immediately and displays a preview thumbnail in the Input Files grid. Files that can't be parsed (wrong format or unsupported TGA type) are skipped with an error notice.
Supported TGA types: The decoder handles TGA image types 2 (uncompressed RGB/RGBA), 3 (uncompressed grayscale), 10 (RLE-compressed RGB/RGBA), and 11 (RLE-compressed grayscale). This covers virtually all TGA files from any production tool.
Step 3: Understand the Alpha Channel Detection
The converter automatically detects whether each TGA file has an alpha channel:
- 32-bit TGA (RGBA): The output will be a 4-channel RGBA TIFF. The alpha channel is preserved exactly as decoded from the TGA source. In Photoshop, this appears as a layer with transparency; in Preview, the checkerboard pattern indicates transparent areas.
- 24-bit TGA (RGB) or lower: The output will be a 3-channel RGB (or 1-channel grayscale) TIFF with no alpha channel. This is the most common scenario for photographic renders, environment textures, and color maps.
You can check the bit depth of your TGA files in Blender (Image Editor → Image Info), Maya (Attribute Editor), Photoshop (Image → Image Size → Bit Depth), or any file properties viewer that reads TGA headers.
Step 4: Configure Download Options
Before converting, you can configure how you want to receive the output files:
- Individual downloads (default): Leave the "Download as ZIP" checkbox unchecked. After conversion, each file gets an individual "⬇ Download TIFF" button in the Output Files grid. Click each one to save individually.
- ZIP archive: Check "Download as ZIP". After conversion, clicking "Download ZIP" packages all converted TIFFs into a single archive named
dataconversioncenter_tga_to_tiff_YYYYMMDDHHMM.zipusing your local timestamp.
For batch conversion of a texture folder — especially when converting 10 or more files at once — ZIP mode is the most efficient option.
Step 5: Convert Your Files
Click the Convert to TIFF button. The tool processes files in pairs (two at a time) for efficiency, showing a real-time progress bar. Each file card in the Input grid updates its status badge:
- Ready (grey) → Converting… (yellow) → Converted (green) or Error (red)
Once complete, a summary banner shows how many files succeeded and how many failed. The Output Files grid displays the converted TIFFs with preview thumbnails and file sizes.
TIFF file sizes: Uncompressed TIFF files are larger than their TGA counterparts because there is no compression applied. A 1024×1024 24-bit TGA (approximately 3 MB uncompressed) produces a TIFF of similar size. If you need smaller files, you can add LZW or ZIP compression in Photoshop after importing.
Step 6: Download Your TIFF Files
From the Output Files grid:
- Click ⬇ Download TIFF under any card to download that file immediately.
- Click Download All TIFFs in the bulk bar at the bottom to trigger individual downloads for all converted files in sequence.
- If ZIP mode is enabled, click Download ZIP to receive a single timestamped archive.
The tool resets automatically after download, clearing all file records from memory.
Step 7: Import into Photoshop or Lightroom
The TIFF output is a standards-compliant baseline TIFF that opens directly in all major imaging applications:
- Photoshop: File → Open → select the .tiff file. If the file has an alpha channel (RGBA), Photoshop opens it as a layer with transparency. Use the Channels panel to inspect or modify the alpha channel independently.
- Lightroom: TIFFs must be imported into the Lightroom catalog (File → Import Photos and Video). Once imported, the TIFF appears in your library like any other source file and can be edited with Lightroom's standard tools.
- GIMP: File → Open works directly. GIMP displays RGBA TIFFs with transparency visible in the canvas.
- Affinity Photo: File → Open. Affinity Photo handles RGBA TIFF natively, with the alpha channel visible in the Channels panel.
Troubleshooting
My TGA file shows an Error status
The error message beneath the file card explains the issue. Common causes:
- Unsupported TGA type: TGA color-mapped (type 1) and color-mapped RLE (type 9) files are not currently supported. These are rare in modern pipelines. Convert via Photoshop or ImageMagick first, then use the tool.
- File is corrupted or truncated: If the TGA file is damaged, the decoder will fail. Try re-exporting from the source application.
- Wrong file extension: Files not ending in
.tgaare rejected. Rename if necessary.
The TIFF has an unexpected alpha channel
This means your source TGA was 32-bit even though you expected it to be opaque. In Photoshop, you can remove the alpha channel via Image → Mode → Flatten or by going to the Channels panel and deleting the Alpha 1 channel. Save the result as a fresh TIFF.
The output TIFF is very large
Uncompressed baseline TIFF stores raw pixel data with no compression. For a 2048×2048 RGBA texture, that is approximately 16 MB. Open the TIFF in Photoshop and re-save with LZW or ZIP compression to reduce size while maintaining lossless quality.
Alternative: ImageMagick Batch Conversion
For very large batches (hundreds or thousands of files), the browser-based tool may be slower than a command-line approach. On macOS or Linux with ImageMagick installed:
# Convert all TGA files in current directory to TIFF with LZW compression
for f in *.tga; do
magick "$f" -compress LZW "${f%.tga}.tiff"
done
This produces LZW-compressed TIFFs, which are significantly smaller than uncompressed TIFF while remaining perfectly lossless. Run brew install imagemagick on macOS or sudo apt install imagemagick on Ubuntu to install.
🚀 Convert TGA to TIFF now — free, browser-based, lossless output, no sign-up.
Open Tool →