Overview
TIFF is a flexible, adaptable raster image format widely used in professional photography, publishing, medical imaging, geospatial analysis, and archival digitization. Originally developed by Aldus Corporation (later acquired by Adobe), TIFF was designed to be the universal interchange format for scanned images, and its extensible tag-based structure has allowed it to evolve over decades without breaking backward compatibility.
What distinguishes TIFF from consumer-oriented formats like JPEG and PNG is its support for high bit depths (8, 16, or 32 bits per channel), multiple color spaces (RGB, CMYK, CIE L*a*b*, YCbCr), multiple compression schemes within the same file, multi-page documents, and extensive metadata including ICC color profiles, EXIF data, and GeoTIFF geospatial coordinate tags. A single TIFF file can contain multiple images (known as subfiles or pages), making it suitable for multi-page scanned documents and image stacks in scientific imaging.
TIFF's flexibility comes at the cost of complexity. The format's many optional features and extensions mean that not every TIFF reader supports every TIFF file, and web browsers do not natively render TIFF images. TIFF occupies a professional niche where maximum quality, metadata richness, and format longevity outweigh concerns about file size and web compatibility.
History
Aldus Corporation (the makers of PageMaker) developed TIFF in collaboration with Microsoft and published the first specification in 1986. The goal was to create a standard format for desktop-scanner output that would be compatible with both Macintosh and PC platforms. TIFF 4.0 (1987) added support for uncompressed RGB images, TIFF 5.0 (1988) added palette-color and LZW compression, and TIFF 6.0 (1992) — the last official revision — added JPEG compression, tile-based organization, and YCbCr color space support.
After Adobe acquired Aldus in 1994, it assumed stewardship of the specification. Although TIFF 6.0 has never been formally revised, several important supplements have been published, including the TIFF/EP (Electronic Photography) standard (ISO 12234-2), the GeoTIFF extension for geospatial metadata, and BigTIFF (2007) for files exceeding the 4 GB limit of classic TIFF. The format remains a cornerstone of professional imaging workflows and archival digitization programs worldwide.
Technical Details
A TIFF file starts with a two-byte byte-order indicator (II for little-endian or MM for big-endian), followed by the magic number 42 and a 4-byte offset to the first Image File Directory (IFD). Each IFD is a sorted array of tag entries, where each tag has a numeric ID, data type, count, and value (or offset to value data). Tags define image dimensions, bit depth, color space, compression method, strip or tile offsets, resolution, and metadata.
TIFF supports numerous compression methods: no compression (raw pixel data), LZW, Deflate/ZIP, PackBits (a simple run-length encoding), CCITT Group 3 and Group 4 (for bilevel fax images), and JPEG (for lossy compression within tiles or strips). Image data can be organized as strips (horizontal bands) or tiles (rectangular blocks), with tiles being preferred for large images because they enable random access to any region without decompressing the entire file. BigTIFF extends the format with 8-byte offsets, supporting files up to 18 exabytes in theory.
Pros & Cons
Pros
- Supports very high bit depths (16-bit and 32-bit per channel) for professional quality
- Multiple compression options including lossless (LZW, ZIP) and uncompressed
- CMYK and Lab color space support for print production workflows
- Extensible tag architecture accommodates metadata like GeoTIFF and ICC profiles
- Multi-page capability suitable for scanned documents and image stacks
Cons
- No native web browser support — cannot be used directly on websites
- File sizes are very large, especially for uncompressed high-resolution images
- Format complexity means not all readers support all TIFF variations
- Classic TIFF has a 4 GB file size limit (BigTIFF extension required for larger files)
- Overkill for casual use where JPEG or PNG would suffice
Common Use Cases
- Professional photography archival where lossless quality preservation is mandatory
- Prepress and print production workflows requiring CMYK color separation
- Medical imaging (digital pathology, radiology) with high bit-depth requirements
- Geospatial analysis using GeoTIFF with embedded coordinate reference systems
- Digitizing archival documents and historical photographs at cultural institutions
- Scientific imaging and microscopy where precise pixel values must be preserved