TIFF Definition: Tagged Image File Format
TIFF stands for Tagged Image File Format. It was originally developed by Aldus Corporation (later acquired by Adobe) in 1986 as a standard format for scanned images. The format has been revised multiple times, with the current version being TIFF 6.0 (published in 1992), which remains the standard today.
TIFF is a raster image format — it stores images as a grid of pixels, not as vector shapes. What makes TIFF special is its extraordinary flexibility: it supports virtually every color space (RGB, CMYK, Lab, Grayscale), bit depth (1-bit through 32-bit per channel), compression method (none, LZW, ZIP, JPEG), and can contain multiple images (pages) in a single file.
Key point: The "Tagged" in TIFF refers to the format's internal structure. Every piece of data in a TIFF file is organized using tags — labeled metadata fields that describe the image dimensions, color space, compression, resolution, and more. This tag-based architecture makes TIFF extremely extensible.
Why TIFF Files Are So Large
TIFF files are notorious for their size. A single image can easily be 50–200 MB. Here is why:
- Lossless or no compression: Most TIFF files use either no compression (raw pixel data) or lossless compression like LZW or ZIP. No image data is discarded, which preserves quality but results in much larger files than lossy formats like JPG.
- High bit depth: While JPG is limited to 8 bits per channel (24-bit total), TIFF commonly uses 16-bit or even 32-bit per channel. A 16-bit RGB image has twice the data per pixel as an 8-bit image.
- CMYK color space: CMYK uses four channels instead of RGB's three, adding 33% more data per pixel.
- Layers and alpha channels: TIFF can store multiple layers and transparency data, each adding to the file size.
| Image Type | TIFF (Uncompressed) | TIFF (LZW) | JPG (90%) |
|---|---|---|---|
| 12 MP photo (RGB, 8-bit) | ~36 MB | ~18 MB | ~3 MB |
| 24 MP photo (RGB, 8-bit) | ~72 MB | ~35 MB | ~6 MB |
| 24 MP photo (RGB, 16-bit) | ~144 MB | ~70 MB | ~6 MB |
| 24 MP print file (CMYK, 8-bit) | ~96 MB | ~48 MB | ~6 MB (RGB) |
| A4 scan at 300 DPI | ~25 MB | ~12 MB | ~1 MB |
How TIFF Files Are Structured
A TIFF file is built from a series of Image File Directories (IFDs), each containing a set of tags. Every tag has a numeric ID, a data type, and a value. This tag-based system is what makes TIFF so flexible:
- Header: the first 8 bytes identify the file as TIFF and specify byte order (big-endian or little-endian). The magic bytes are
49 49(little-endian, "II") or4D 4D(big-endian, "MM"). - IFD (Image File Directory): contains tags describing one image — width, height, bits per sample, compression method, color space, strip/tile offsets, and more. A TIFF file can have multiple IFDs, one per page.
- Image data: the actual pixel data, stored as strips or tiles referenced by the IFD tags.
- EXIF/IPTC/XMP metadata: TIFF natively supports rich metadata through dedicated tags, including camera data (EXIF), copyright information (IPTC), and extensible metadata (XMP).
The multi-IFD design is why TIFF supports multi-page documents — each page is simply another IFD in the file. This is commonly used for scanned documents and faxes.
Where TIFF Is Used
TIFF dominates in professional fields where image quality and metadata preservation are critical:
- Commercial printing: print shops universally accept TIFF because it supports CMYK, has no compression artifacts, and preserves exact color data. Most magazines, catalogs, and packaging are produced from TIFF files.
- Document scanning: office scanners, MFP (multifunction printers), and document management systems default to TIFF because it supports multi-page documents, lossless compression, and 1-bit (black/white) mode for text.
- Medical imaging: while DICOM is the primary medical format, many radiology and pathology systems export to TIFF for compatibility. Whole-slide imaging in pathology uses BigTIFF (64-bit TIFF) for multi-gigapixel scans.
- GIS and satellite imagery: GeoTIFF embeds geographic coordinates directly in TIFF tags, making it the standard for satellite photos, aerial surveys, and mapping data.
- Photography archival: photographers who want lossless masters (without the patent concerns of camera RAW formats) archive in TIFF. Adobe Lightroom and Capture One export to TIFF for round-trip editing.
- Library and museum digitization: cultural heritage institutions scan documents, photographs, and artwork as TIFF for permanent archival because the format is non-proprietary and lossless.
Device and Software Compatibility
| Platform / Software | TIFF Support | Notes |
|---|---|---|
| Adobe Photoshop / Lightroom | Full | All TIFF variants, layers, CMYK, 32-bit |
| GIMP | Full | Free, cross-platform, handles most TIFF features |
| macOS Preview | Good | RGB and multi-page; limited CMYK rendering |
| Windows Photos | Basic | RGB only; CMYK and 16-bit may fail |
| IrfanView | Good | Free, fast, handles multi-page and most compressions |
| Chrome / Firefox / Edge | No | Cannot display TIFF images |
| Safari | Yes | Only major browser with TIFF support |
| iPhone / iPad | Limited | Safari can display; Photos app cannot import |
| Android | No | Default gallery does not support TIFF |
The compatibility gap is clear: professional software handles TIFF perfectly, but consumer devices and web browsers largely do not. This is the primary reason to convert TIFF to JPG when you need to share images with non-professionals or publish them online.
TIFF vs Other Image Formats
| Feature | TIFF | JPG | PNG | PSD |
|---|---|---|---|---|
| Compression | Lossless / None | Lossy | Lossless | Lossless / None |
| CMYK | Yes | No (RGB only) | No (RGB only) | Yes |
| Layers | Yes | No | No | Yes |
| Max bit depth | 32-bit | 8-bit | 16-bit | 32-bit |
| Multi-page | Yes | No | No | No |
| Web support | Safari only | Universal | Universal | None |
| Best for | Print, archival | Web, photos | Web, graphics | Photoshop editing |
TIFF vs JPG: TIFF is lossless and supports CMYK, layers, and high bit depth. JPG is lossy but produces files 90–98% smaller. Use TIFF for print masters and archival; use JPG for web, email, and sharing.
TIFF vs PNG: both are lossless, but TIFF supports CMYK, layers, multi-page, and higher bit depths. PNG is better for the web because every browser supports it. For professional print, TIFF wins; for web graphics, PNG wins.
TIFF vs PSD: both support layers, CMYK, and high bit depth. PSD is Photoshop's native format with full layer editing support. TIFF is more universal — any professional imaging tool can read it, while PSD requires Adobe software or specific importers.