Back to MIME Types

image/tiff TIFF Common

Identifies TIFF images — a flexible, high-fidelity format used heavily in print, scanning, and professional photography workflows.

What it's for

image/tiff identifies TIFF (Tagged Image File Format) images — a highly flexible format supporting multiple compression methods (including fully lossless options), high color depth, multiple pages/layers within a single file, and extensive metadata capabilities. Unlike most web-oriented image formats, TIFF's primary home is professional print, scanning, and photography workflows, where its fidelity and flexibility matter more than the smaller file sizes that make other formats better suited for web delivery.

Format & syntax

Content-Type: image/tiff

No parameters. TIFF's "tagged" structure means the file format itself is extensible via metadata tags, which is part of why it's remained relevant across such a wide range of professional imaging contexts for decades — new capabilities can be added via new tags without breaking compatibility with tools that ignore tags they don't understand.

How it's used in practice

  • Scanning and document digitization — scanner software commonly outputs TIFF, especially for multi-page document scans (TIFF supports multiple pages within a single file) and archival-quality digitization where lossless fidelity matters.
  • Professional photography and print workflows — photographers and print production workflows often work with TIFF for its lossless quality and support for high bit-depth color, particularly at stages where further editing or professional printing is involved, before final export to a web-friendlier format.
  • Fax and legacy document systems — some legacy fax and document management systems historically standardized on TIFF, and this legacy persists in certain enterprise document workflows today.
  • Geospatial and scientific imaging — GeoTIFF (a TIFF variant with embedded geospatial metadata) is a standard format in mapping/GIS applications, and TIFF's flexible metadata support makes it a common choice for scientific imaging that needs to preserve extensive capture metadata alongside the image data.

Common mistakes & gotchas

  • Using TIFF for web content and creating unnecessarily large downloads — like BMP, TIFF (especially uncompressed or minimally-compressed TIFF) produces much larger files than web-appropriate formats; TIFF should be converted to PNG/JPEG/WebP before web delivery, not served directly to browsers.
  • Browser support for TIFF is inconsistent — unlike JPEG/PNG/WebP, most modern browsers don't natively render TIFF images inline, meaning a TIFF linked in an <img> tag may simply fail to display or trigger a download rather than rendering, an important practical limitation if TIFF ever ends up in a web-facing context by mistake.
  • Assuming all TIFF files use the same compression — TIFF supports multiple internal compression schemes (including fully uncompressed, LZW, and others) plus various color depths, so file sizes and processing requirements can vary dramatically between different TIFF files despite sharing the same MIME type.
  • Multi-page TIFF files being mishandled by tools expecting single images — because TIFF can contain multiple pages/layers in one file, image-processing code that assumes a single image per file (a very common assumption, since most other image formats don't support this) can silently only process the first page, missing the rest.

Comparison & FAQ

Type Purpose Key difference from image/tiff
image/png Lossless web-appropriate format Much smaller file sizes and universal browser support, versus TIFF's professional/archival focus
application/pdf Fixed-layout document format Better browser/viewer support for multi-page scanned document distribution than TIFF

Can browsers display TIFF images directly?

Not reliably — unlike JPEG, PNG, and WebP, most modern browsers don't natively render TIFF inline, so a TIFF referenced in an <img> tag may fail to display or trigger a download instead.

Why would I use TIFF instead of PNG for professional work?

TIFF supports higher color depths, more flexible metadata, multi-page files, and additional compression options tailored to print/archival workflows — capabilities PNG doesn't offer, though for web delivery PNG remains the far more practical choice.

Should scanned documents be TIFF or PDF?

For single documents meant for general viewing/sharing, PDF is generally more practical due to universal viewer support. TIFF remains common specifically in scanning/archival workflows valuing lossless fidelity and its multi-page-per-file capability.

Do all TIFF files use the same compression?

No — TIFF supports multiple internal compression schemes (including fully uncompressed) and varying color depths, so file size and processing needs can differ significantly between TIFF files despite sharing the same MIME type.