The Complete Guide to PDF to TIFF Conversion
Everything photographers, print professionals, archivists, medical imaging specialists, and developers need to know about converting PDF pages to TIFF images — the format, DPI selection, colour modes, and professional workflows.
What Is TIFF Format?
TIFF — Tagged Image File Format — is a flexible, lossless raster image format developed by Aldus Corporation (later acquired by Adobe) in 1986. Unlike JPEG, which uses lossy compression that discards image data to reduce file size, TIFF supports uncompressed storage of raw pixel data, guaranteeing that no image quality is lost between the original source and the TIFF output. This makes TIFF the dominant format for archival imaging, professional photography, print production, medical imaging, and document scanning workflows where absolute image fidelity is non-negotiable.
A TIFF file is structured around a flexible tagging system — a series of IFD (Image File Directory) entries that describe the image's dimensions, colour space, bit depth, resolution (DPI), compression method, and the location of the image data within the file. This tag-based architecture allows TIFF to store an extraordinary range of image types: from simple bilevel black-and-white document scans to 32-bit-per-channel HDR photography, from indexed-colour images to CMYK press-ready artwork.
TIFF vs PNG vs JPEG: TIFF is the professional-grade archival format — larger files than JPEG but zero quality loss. PNG is the web-standard lossless format with better compression than TIFF but no DPI metadata or CMYK support. JPEG trades quality for smaller file size. For any workflow where image quality, DPI accuracy, or professional compatibility matters — archiving, printing, medical imaging, legal documents — TIFF is the correct choice.
TIFF File Structure — How This Tool Generates Real TIFFs
This tool writes a standards-compliant TIFF binary directly in JavaScript — not a PNG renamed to .tiff, but a genuine TIFF file with correct IFD structure, proper tag codes, and embedded DPI metadata. Understanding the structure explains why this output opens natively in Photoshop, GIMP, and all professional imaging tools.
TIFF Header (8 bytes)
Every TIFF begins with a 4-byte header: byte order marker (II for little-endian / MM for big-endian), the TIFF magic number 42, and the offset to the first IFD. This tool writes little-endian TIFFs (49 49 2A 00) matching the native byte order of x86/ARM processors for maximum compatibility.
Image File Directory (IFD)
The IFD contains the image's metadata tags: ImageWidth (tag 256), ImageLength (tag 257), BitsPerSample (tag 258), Compression (tag 259), PhotometricInterpretation (tag 262), StripOffsets (tag 273), SamplesPerPixel (tag 277), RowsPerStrip (tag 278), StripByteCounts (tag 279), XResolution (tag 282), YResolution (tag 283), and ResolutionUnit (tag 296). Each tag entry is 12 bytes: tag code, type, count, and value/offset.
DPI / Resolution Tags
XResolution (tag 282) and YResolution (tag 283) store the image resolution as RATIONAL values — a 64-bit fraction of numerator/denominator. ResolutionUnit (tag 296) is set to 2 (inch). This means any application that reads the TIFF knows exactly at what physical size to display or print the image — a 300 DPI, 2550×3300 pixel TIFF represents an 8.5×11 inch document at print quality.
Image Data (Uncompressed)
The pixel data is stored as raw, uncompressed raster rows (Compression = 1 / NoCompression). For RGB mode: 3 bytes per pixel (R, G, B). For Grayscale: 1 byte per pixel. For B&W: 1 bit per pixel (8 pixels packed per byte), using PhotometricInterpretation = 0 (WhiteIsZero) for document-standard bilevel encoding. No compression means no quality loss and maximum application compatibility.
DPI Selection Guide — Which Resolution for Your Use Case
DPI (dots per inch) determines how many pixels the TIFF contains per inch of the original page. Higher DPI means more pixels, larger file size, and sharper results when the image is printed or enlarged. Choosing the right DPI for your use case is critical to balancing quality against file size.
| DPI | Pixels (A4 page) | Est. File Size | Best For |
|---|---|---|---|
| 72 dpi | 595 × 842 | ~1.4 MB | Screen display, email thumbnails, web previews |
| 96 dpi | 794 × 1122 | ~2.6 MB | Web display, low-resolution digital archives |
| 150 dpi | 1240 × 1754 | ~6.2 MB | Draft printing, basic document archiving |
| 200 dpi ⭐ | 1654 × 2339 | ~11 MB | General purpose, document scanning standard |
| 300 dpi | 2480 × 3508 | ~25 MB | Professional print quality, legal archiving, OCR |
| 400 dpi | 3307 × 4677 | ~44 MB | High-fidelity archiving, fine art reproduction |
| 600 dpi | 4961 × 7016 | ~99 MB | Archival master copies, microscopy, fine detail |
Estimated file sizes for uncompressed RGB TIFF of an A4 page (210mm × 297mm). Grayscale files are 1/3 the RGB size; B&W files are 1/24 the RGB size.
Colour Mode Guide
RGB (24-bit)
Three 8-bit channels (Red, Green, Blue) per pixel — 16.7 million possible colours. The universal colour mode for screen display, colour printing, and general image processing. Every pixel stores 3 bytes of data. Best for coloured PDFs, illustrated documents, and any content with colour that needs to be preserved faithfully.
PhotometricInterpretation = 2 (RGB)
Grayscale (8-bit)
256 shades of grey per pixel — 1 byte per pixel. The standard mode for document scanning, black-and-white photography, and text-heavy documents where colour information is irrelevant. Produces files exactly 1/3 the size of RGB at the same DPI. Recommended for most business document archiving and OCR pre-processing workflows.
PhotometricInterpretation = 1 (BlackIsZero)
B&W (1-bit)
Pure black or white per pixel — 1 bit per pixel, 8 pixels packed per byte. Produces extremely compact files (1/24 the size of RGB). Ideal for line-art documents, text-only pages, fax-compatible archiving, and any document that will be processed by OCR software. The threshold slider controls where the grey-to-black conversion boundary is applied.
PhotometricInterpretation = 0 (WhiteIsZero)
Why Convert PDF to TIFF?
PDF is a document format — optimised for viewing, printing, and portability. TIFF is an image format — optimised for pixel-level accuracy, lossless storage, and integration with image processing pipelines. Converting from PDF to TIFF is necessary when downstream workflows require raster image input rather than vector document input.
OCR Processing
Most OCR (Optical Character Recognition) engines — Tesseract, ABBYY, AWS Textract, Google Document AI — accept TIFF as their primary input format. Converting a PDF to 300 DPI grayscale TIFF before OCR processing produces more accurate character recognition than feeding the PDF directly, because TIFF's fixed-resolution raster representation is exactly what OCR engines are optimised to process.
Document Management Systems
Enterprise content management (ECM) and document management systems (DMS) from vendors including Laserfiche, OpenText, and Hyland use TIFF as their native archival format. Converting PDFs to TIFF for ingestion into these systems ensures compatibility with the DMS's indexing, versioning, and long-term storage infrastructure.
Medical & Legal Imaging
Medical imaging systems and legal evidence management platforms have strict format requirements — TIFF is the mandated format for scanned document evidence in many court jurisdictions, and for radiology reports and clinical documentation in HIPAA-compliant workflows. A PDF converted to 300 DPI TIFF meets these standards.
Photo Editing Integration
Design workflows that involve bringing document pages into Photoshop, GIMP, or Affinity Photo for compositing, colour correction, or retouching use TIFF as the interchange format. A PDF page converted to 300 DPI RGB TIFF imports into Photoshop as a single layer with correct physical dimensions, ready for non-destructive editing.
Who Benefits?
✔ Print & Pre-Press Professionals
Printers and pre-press specialists who receive artwork as PDFs convert pages to high-DPI TIFF for proofing, plate-making, and colour correction workflows. TIFF's support for precise DPI metadata and lossless pixel data makes it the correct input format for RIP (Raster Image Processor) software and platesetter systems.
✔ Document Archivists
Libraries, government agencies, and corporate records managers who maintain long-term document archives convert PDFs to TIFF for preservation — TIFF is an ISO-standardised archival format (TIFF/IT, TIFF-FX) with a 40-year track record of application support, making it a safer long-term bet than proprietary PDF versions for permanent archiving.
✔ Healthcare & Medical Staff
Medical professionals who receive clinical documents, radiology reports, and patient records as PDFs convert them to TIFF for import into EMR/EHR systems that require TIFF-format document images. TIFF is the standard format for DICOM-adjacent document imaging in healthcare IT infrastructure.
✔ Developers & Automation Engineers
Software developers building document processing pipelines — OCR, classification, data extraction, invoice parsing — convert PDFs to TIFF as the first step in their automation workflow. A consistent, high-quality TIFF input normalises the document image before feeding it to ML models or OCR APIs.
Real-World Use Cases
🖨️ Legal Document Archive (300 DPI Grayscale)
A law firm's document management system mandates TIFF format for all archived case documents. The paralegal receives briefs, contracts, and court filings as PDFs and converts each to 300 DPI grayscale TIFF before uploading to the DMS. The grayscale mode keeps file sizes manageable while preserving every character and signature at full print resolution.
🔬 OCR Pre-Processing Pipeline (300 DPI B&W)
A data extraction startup processes thousands of invoice PDFs daily. Before feeding to their Tesseract OCR pipeline, they convert each PDF page to 300 DPI bilevel (B&W) TIFF — the format Tesseract performs best on. The B&W threshold is set to 140 (slightly lighter) to ensure pale text on coloured invoice backgrounds is captured as solid black characters.
🎨 Pre-Press Artwork Proofing (400 DPI RGB)
A print studio receives a magazine layout as a PDF. Before sending to the RIP for platesetting, the studio converts the PDF to 400 DPI RGB TIFF for visual proofing in Photoshop — checking colour accuracy, text sharpness, and bleed margins at the actual print pixel dimensions. The TIFF's lossless fidelity ensures that what is proofed exactly matches what the RIP will process.
🏥 Medical Record Digitisation (200 DPI Grayscale)
A hospital's health information management team receives older patient records as scanned PDF files. They convert these to 200 DPI grayscale TIFF for import into their EMR system's document imaging module. The 200 DPI standard is sufficient to read all handwritten and printed text while keeping file sizes within the EMR system's per-document storage limits.
Key Features of Our PDF to TIFF Converter
Real TIFF binary output, configurable DPI from 72 to 600, three colour modes, per-page preview, batch ZIP — all running privately in your browser.
Real TIFF Binary Output
Writes genuine TIFF files in JavaScript — complete with 8-byte TIFF header, IFD with 13 tags (ImageWidth, ImageLength, BitsPerSample, Compression, PhotometricInterpretation, StripOffsets, SamplesPerPixel, RowsPerStrip, StripByteCounts, XResolution, YResolution, ResolutionUnit, and IFD terminator), RATIONAL DPI values, and raw uncompressed pixel data. Opens natively in Photoshop, GIMP, IrfanView, and all professional tools.
72–600 DPI with Presets
Seven DPI presets (72, 96, 150, 200, 300, 400, 600) with visual labels (Screen, Web, Draft, Good, Print, High, Max) and a custom DPI input field accepting any value from 36 to 600. Each DPI renders PDF pages at the corresponding pixel density — a 300 DPI TIFF of an A4 page produces a 2480×3508 pixel image matching professional print quality standards.
Three Colour Modes
RGB (24-bit, 3 bytes/pixel, PhotometricInterpretation=2), Grayscale (8-bit, 1 byte/pixel, luminosity-weighted conversion, PhotometricInterpretation=1), and Black & White (1-bit, 8 pixels/byte, configurable threshold 50–220, PhotometricInterpretation=0). Each mode writes the correct TIFF tags for its bit depth and colour space — not a visual approximation but a properly encoded TIFF for that mode.
Batch ZIP & Zero Upload
Convert all pages of one or multiple PDFs in a single operation. Each page becomes an individually named TIFF file. Download all files as a ZIP archive with one click — ideal for archiving entire document sets. Your PDF files never leave your device: PDF.js renders locally, the TIFF encoder runs in JavaScript, and the ZIP is built entirely in browser memory.
Pro Tips for Best Results
Tesseract, AWS Textract, and most OCR engines produce best results with 300 DPI grayscale TIFF input. 300 DPI provides enough pixel density to clearly resolve individual characters, while grayscale mode eliminates colour variation that can confuse character boundary detection. Set the B&W threshold to 140–160 for slightly aggressive binarisation when text has low contrast.
For document management systems with storage limits, 200 DPI grayscale TIFF is the sweet spot — large enough to read all text and details clearly, small enough (roughly 11 MB for an A4 page uncompressed) to avoid storage issues. At 200 DPI, a 100-page document produces ~1.1 GB of uncompressed TIFF data. Use a ZIP download and apply LZW compression in your DMS for long-term storage.
The default threshold of 128 works well for standard printed documents. For heavily yellowed or aged documents, increase the threshold to 160–180 to prevent background discolouration from appearing as black specks. For faint pencil or low-contrast text, decrease to 80–100 to ensure light strokes are captured as black rather than discarded as white. Preview the result before downloading to check the threshold is correct.
For large PDFs (50+ pages), use the Page Range field to convert only the pages you need — e.g. "1-12, 45-50" for front matter and a specific appendix. At 300 DPI, each A4 page is ~25 MB uncompressed, so a full 100-page document produces ~2.5 GB. Targeting specific pages keeps output sizes manageable for both download and downstream processing.
Frequently Asked Questions
Conclusion
PDF to TIFF conversion is a foundational step in countless professional imaging, archiving, and document processing workflows. Having a free, browser-based tool that generates genuine TIFF binary files — with correct IFD structure, proper DPI metadata tags, three colour modes, and configurable resolution from 72 to 600 DPI — gives print professionals, archivists, healthcare workers, developers, and anyone who needs high-fidelity raster images from PDF pages a reliable, private, and instant conversion solution. Every TIFF produced by this tool is a standards-compliant image file that opens correctly in Photoshop, GIMP, IrfanView, and all professional imaging applications — not a web image in disguise.
Ready to Convert Your PDFs to TIFF?
Drop your PDFs above — choose DPI, colour mode, and download real TIFF files. Zero uploads, completely free.