Step-by-step instructions
- 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
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
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
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?
Should I use LZW or ZIP compression for archival TIFFs?
Can I convert a PDF with vector graphics to TIFF without quality loss?
No account. No upload. Works in any browser.