TGA to TIFF Crop Converter

Load a TGA file, drag the crop handles to define exactly the area you need, preview the result, then download a lossless TIFF. Everything runs in your browser — your image never leaves your device.

🖼️

Drop a TGA here

or Browse Files  ·  TGA supported

What This Tool Does

This tool loads a TGA (Truevision TGA) image directly in your browser, presents an interactive crop overlay with draggable handles, and encodes the selected region as an uncompressed TIFF file. No server upload is required. The full workflow — loading, decoding, cropping, and TIFF encoding — runs entirely in client-side JavaScript. TGA files are decoded with a built-in parser handling uncompressed (type 2/3) and RLE-compressed (type 10/11) variants at 8, 16, 24, and 32 bits per pixel. TIFF output is written using a minimal inline encoder that produces a valid Baseline TIFF with RGB or RGBA colour space, ensuring compatibility with Photoshop, GIMP, Lightroom, and any other standard image application.

Who This Is For

  • 3D artists and game developers archiving or re-purposing TGA render output as lossless TIFF
  • Print professionals who need a crop of a TGA source asset in TIFF for pre-press workflows
  • Photographers and archivists converting legacy TGA assets to the universally supported TIFF format
  • Anyone who needs to trim and convert a TGA to TIFF without installing Photoshop or GIMP

TGA vs TIFF: Format Comparison

PropertyTGATIFF
CompressionUncompressed or RLELossless (uncompressed, LZW, ZIP)
File sizeLarge (uncompressed)Large — similar to uncompressed TGA
Quality lossNoneNone
Application supportGame engines, 3D toolsUniversal — Photoshop, GIMP, print, archival
TransparencyFull alpha channel (32-bit)Full alpha channel
Best forReal-time rendering, legacy pipelinesPrint production, archiving, professional editing
Metadata supportMinimalRich — EXIF, IPTC, XMP supported

Frequently Asked Questions

Why is the TIFF output file large?
TIFF stores every pixel without lossy compression. An uncompressed TIFF at 3000×2000 pixels at 24-bit colour is approximately 17 MB. This is expected and is the trade-off for pixel-perfect lossless quality. If file size is a concern, consider the TGA to PNG Crop tool, which uses lossless PNG compression for smaller files.
Is the alpha channel from my TGA preserved?
Yes. If your source TGA has a 32-bit alpha channel, the tool writes an RGBA TIFF (4 samples per pixel with an associated alpha channel tag). The transparency is fully preserved in the output.
How precise is the crop tool?
The crop operates at native pixel accuracy on the original TGA dimensions. The canvas is scaled to fit your screen for display, but crop coordinates are mapped back to the full-resolution image before the TIFF is written.
Can I move the crop selection after setting it?
Yes — click and drag inside the crop rectangle (away from the handles) to reposition it anywhere within the image. Handles resize; the interior pans.
What browsers are supported?
All modern browsers — Chrome, Firefox, Edge, Safari (desktop and mobile). The TGA decoder and TIFF encoder are pure JavaScript and require no browser-specific APIs beyond standard ArrayBuffer and Blob support.
Is there a file size limit?
There is no server-imposed limit because no upload occurs. The practical limit is your browser's available RAM. TIFF output for very large crops can itself be large; most modern desktops handle files up to several hundred MB comfortably.