FormatDrop
How-To Guide

How to Convert PDF to TIFF

Converting PDF to TIFF is standard in prepress printing (printers and RIP systems process TIFF), medical imaging (DICOM systems require TIFF), and document archiving (TIFF is the accepted archival raster format). Each PDF page becomes a separate TIFF file at the chosen resolution.

Step-by-step instructions

  1. 1

    ImageMagick (command line)

    Convert all pages: `magick -density 300 input.pdf output_%03d.tiff`. Specific page: `magick -density 300 'input.pdf[0]' page_one.tiff` (pages start at index 0). LZW compression: `magick -density 300 input.pdf -compress LZW output_%03d.tiff`.

    Go to converter
  2. 2

    Ghostscript (best PDF rendering)

    `gs -sDEVICE=tiff24nc -r300 -dNOPAUSE -dBATCH -sOutputFile=output_%03d.tiff input.pdf`. Devices: tiff24nc (24-bit RGB), tiff32nc (32-bit CMYK), tiffgray (8-bit grayscale). Ghostscript handles complex PDF features more reliably than ImageMagick.

  3. 3

    poppler-utils / pdftoppm (fast, simple)

    Install: `brew install poppler` (Mac) or `sudo apt install poppler-utils` (Ubuntu). Convert to TIFF: `pdftoppm -r 300 -tiff input.pdf output_prefix`. Creates output_prefix-1.tif, -2.tif, etc.

  4. 4

    Python pdf2image (scripted pipelines)

    `pip install pdf2image`. Script: `from pdf2image import convert_from_path; pages = convert_from_path('input.pdf', dpi=300); [page.save(f'page_{i:03d}.tiff', 'TIFF') for i, page in enumerate(pages)]`. For multi-page TIFF: `pages[0].save('doc.tiff', save_all=True, append_images=pages[1:])`.

Why convert PDF to TIFF?

PDF is for document exchange; TIFF is for raster-based production workflows. Converting at 300 DPI opens your content to print, scanning, and imaging systems.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

What DPI should I use for PDF to TIFF conversion?
72–96 DPI: screen thumbnails only. 150 DPI: draft print quality. 300 DPI: standard for professional prepress — virtually all print work. 600 DPI: fine detail and engineering drawings. 1200 DPI: barcode and high-precision scanning. Use 300 DPI for most purposes.
Should I use LZW or ZIP compression for archival TIFFs?
Both are lossless. LZW has broader compatibility; ZIP compresses 10–20% better on photographic content. For archival: LZW for maximum compatibility. For storage efficiency: ZIP. For prepress: many RIP systems prefer uncompressed TIFF — verify with your print shop.
Can I convert a PDF with vector graphics to TIFF without quality loss?
Vector-to-raster always involves resolution. At 300 DPI, the output looks sharp at actual size. At 600 DPI, fine details are sharper. Higher DPI means larger files. Unlike converting TIFF to PDF, converting PDF to TIFF always rasterizes — no lossless path exists.
Convert PDF to TIFF Now — Free

No account. No upload. Works in any browser.