Step-by-step instructions
- 1
ImageMagick (command line — handles multi-page TIFF)
Single TIFF to PDF: `magick input.tiff output.pdf`. Multiple TIFFs to one PDF: `magick page1.tiff page2.tiff page3.tiff document.pdf`. Multi-page TIFF: `magick 'multipage.tiff[0-5]' output.pdf`. High quality: `magick -density 300 input.tiff output.pdf`.
Go to converter - 2
Ghostscript (command line, print-quality control)
`gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -sOutputFile=output.pdf input.tiff`. Multiple TIFFs: `gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -sOutputFile=output.pdf page*.tiff`. Install: `brew install ghostscript` (Mac) or `sudo apt install ghostscript` (Ubuntu).
- 3
Python Pillow (batch automation)
`from PIL import Image; import glob; images = [Image.open(f).convert('RGB') for f in sorted(glob.glob('*.tiff'))]; images[0].save('document.pdf', save_all=True, append_images=images[1:])`. Pillow handles multi-page TIFF natively.
- 4
Preview on Mac (drag-and-drop simplicity)
Open TIFF in Preview. File → Export as PDF. For multi-page TIFF: Preview displays all pages; export converts all pages to PDF. Or: select multiple TIFFs in Finder → right-click → Open with Preview → File → Print → PDF → Save as PDF.
Why convert TIFF to PDF?
TIFF is the archiving standard; PDF is the sharing standard. Converting makes scanned documents universally viewable and archivable.
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
Will the TIFF quality be preserved in the PDF?
How do I combine multiple TIFFs into one PDF?
Can a TIFF to PDF conversion be searchable (OCR)?
No account. No upload. Works in any browser.