ImageBinary
image/tiff
TIFF
Reference for image/tiff, the flexible high-quality image format used in photography, publishing, and medical imaging.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .tiff, .tif
HTTP Content-Type Header
HTTP Header
Content-Type: image/tiffAssociated File Extensions
.tiff.tif
Quick Facts
| MIME Type | image/tiff |
| Category | Image |
| Type | Binary |
| Extensions | .tiff, .tif |
Common Usage
TIFF supports lossless compression, multiple pages, layers, and high bit depths. It is the standard format for professional photography, print publishing, medical imaging (alongside DICOM), GIS satellite imagery, and archival document scanning.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.tiff" type="image/tiff">
<!-- Or for script/media elements -->
<script type="image/tiff" src="file.tiff"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('image/tiff');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'image/tiff' });nginx
# nginx.conf — add to types block or use default
types {
image/tiff tiff tif;
}
# Or set for a specific location
location /api/ {
default_type image/tiff;
}Related MIME Types
More Image MIME Types
Other image types in the Image family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.