Image format
TIFF Sample Image Files
TIFF (.tiff) is a flexible container for high-bit-depth raster images, supporting multiple pages, tiling, and various compression schemes (LZW, JPEG, ZIP). Use sample .tiff files to validate professional scanning workflows, multi-page extraction, and compression decoding.
9 files
All to 25MB
SHA256 verified
Manifest included
Image routing
Choose a TIFF sample file by imaging task.
Quick facts
Files first
TIFF Sample Files — Download
| Filename | Size | MIME | Download |
|---|---|---|---|
| 4.6 MB | image/tiff |
Download
|
|
| 78.4 KB | image/tiff |
Download
|
|
| 1.1 MB | image/tiff |
Download
|
|
| 18.3 MB | image/tiff |
Download
|
|
| 49.2 KB | image/tiff |
Download
|
|
| 1.1 MB | image/tiff |
Download
|
|
| 587.0 KB | image/tiff |
Download
|
|
| 65.7 KB | image/tiff |
Download
|
|
| 540.2 KB | image/tiff |
Download
|
No files match the current filter. Switch to another chip or size range.
Use cases
TIFF Testing Workflows
Archival Scan Review
Open Format TIFFLarge TIFF Transfer
Open Format TIFFCompare and decide
TIFF Format Comparisons
TIFF vs PNG
Open ComparisonFAQ and reference
TIFF File FAQ
Checksum Verification
Use checksums to confirm file integrity after download.
shasum -a 256 your_file_name_here
# Compare output with SHA256 values listed above.
Where is the machine-readable manifest?
Use the manifest when you need stable names, SHA256 values, and URLs for automation.
Use in code — curl, Python, Node, wget
Copy any snippet directly into scripts, test suites, or CI pipelines. All URLs are stable and publicly accessible with no auth required.
# Download tiff_1000x600_sample_file_4.6MB.tiff
curl -L -o tiff_1000x600_sample_file_4.6MB.tiff \
https://samplefile.com/samples/download/image/tiff/tiff_1000x600_sample_file_4.6MB.tiff/
# Or fetch a random TIFF file
curl -s "https://samplefile.com/samples/api/random?format=tiff" | jq -r '.download_url'
# Download tiff_1000x600_sample_file_4.6MB.tiff
wget -O tiff_1000x600_sample_file_4.6MB.tiff \
https://samplefile.com/samples/download/image/tiff/tiff_1000x600_sample_file_4.6MB.tiff/
import requests
# Download a specific file
url = "https://samplefile.com/samples/download/image/tiff/tiff_1000x600_sample_file_4.6MB.tiff/"
resp = requests.get(url)
with open("tiff_1000x600_sample_file_4.6MB.tiff", "wb") as f:
f.write(resp.content)
# Or fetch a random TIFF file via API
meta = requests.get("https://samplefile.com/samples/api/random?format=tiff").json()
resp = requests.get(meta["download_url"])
with open(meta["name"], "wb") as f:
f.write(resp.content)
// Download a specific file
const fs = require("fs");
const https = require("https");
const url = "https://samplefile.com/samples/download/image/tiff/tiff_1000x600_sample_file_4.6MB.tiff/";
https.get(url, (res) => {
res.pipe(fs.createWriteStream("tiff_1000x600_sample_file_4.6MB.tiff"));
});
// Or fetch a random TIFF via the API
const meta = await fetch("https://samplefile.com/samples/api/random?format=tiff").then(r => r.json());
const file = await fetch(meta.download_url);
// use file.arrayBuffer(), file.body, etc.
# Random TIFF file (JSON response)
GET https://samplefile.com/samples/api/random?format=tiff
# All TIFF files
GET https://samplefile.com/samples/api/files?format=tiff
# Manifest with SHA256 checksums
GET https://samplefile.com/samples/image/tiff/manifest.json
# Response includes: name, size_bytes, mime_type, sha256, download_url
Validation Methodology
- Validate MIME sniffing against extension and file signatures.
- Test transparency, color profile, and resize pipelines.
- Benchmark decode speed and memory use for larger dimensions.
Fixture Matrix
Use the curated TIFF matrix to choose the right clean, edge-case, and broken fixtures for this format.
Open Matrix
Workflow Packs