Skip to content
← All Guides
🔒 No Upload Required ✅ Free Forever 🌐 Browser-Based
Tutorial

How to Convert TGA to TIFF: Step-by-Step Tutorial

By Bill Crawford  ·  March 2026  ·  6 min read  ·  Last updated March 6, 2026

Connect on LinkedIn →

🚀 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

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:

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:

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:

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:

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:

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:

Troubleshooting

My TGA file shows an Error status

The error message beneath the file card explains the issue. Common causes:

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 →

Related Tools

BC
Bill Crawford
Founder, Data Conversion Center

Bill Crawford is a data systems developer and technical founder with over 30 years of professional experience in accounting, finance, and business operations.

Bill founded DataConversionCenter.com to build practical, browser-based tools that simplify complex data challenges — from SQL query construction to image format conversion.

Professional Background
  • Bachelor's Degree in Accounting
  • 30+ years in accounting and finance
  • 10+ years in financial and enterprise systems development