How to Convert PDF to TIFF: Free Methods for High-Quality Images
Learn how to convert PDF to TIFF format for free. High-quality methods for professional printing, faxing, and archival with lossless image quality.
TIFF files don't get the love they deserve. While everyone talks about JPG and PNG, TIFF (Tagged Image File Format) quietly handles the jobs that demand zero quality loss — professional printing, faxing, medical imaging, and legal document archiving.
I ran into this when a printing house rejected my JPG submissions for a product catalog. They wanted TIFF. The reason? JPG compression introduces artifacts that show up on high-resolution prints. TIFF keeps everything lossless.
Here's how to convert your PDFs to TIFF for any purpose, using free tools that actually work.
Why Convert PDF to TIFF?
Most people convert PDF to JPG or PNG and call it a day. But TIFF has specific advantages that matter in certain situations:
- Lossless quality: No compression artifacts — every pixel is preserved exactly
- Multi-page support: A single TIFF file can hold multiple pages, just like a PDF
- Professional printing: Print houses and publishers often require TIFF for high-resolution output
- Fax compatibility: Many fax systems work with TIFF, not PDF
- Medical and legal: DICOM and court filing systems often need TIFF format
- Archival: TIFF is widely accepted as a long-term preservation format
The downside? TIFF files are large. A single page can be 20-50 MB compared to 100-500 KB for JPG. That's the price of lossless quality.
Method 1: Online PDF to TIFF Converters
The fastest way to convert PDF to TIFF is using an online tool. No software to install, works on any device with a browser.
- Open your browser-based PDF to image converter
- Upload your PDF file
- Select TIFF as the output format
- Choose your DPI setting (300 DPI for print, 150 DPI for screen)
- Click convert and download your TIFF files
Most online tools convert each PDF page into a separate TIFF file. If you need a multi-page TIFF (one file with all pages), you'll need a tool that specifically supports that option.
Privacy tip: If your PDF contains sensitive information, use a browser-based tool that processes files locally. Tools that upload your files to remote servers could store copies of your documents.
Method 2: Using ImageMagick (Command Line)
ImageMagick is a free, open-source tool that handles PDF to TIFF conversion with full control over quality and settings. It's available for Windows, Mac, and Linux.
Basic conversion command:
convert -density 300 input.pdf output.tiffThis converts your PDF at 300 DPI, which is the standard for professional printing. You can adjust the density value:
- 72 DPI: Screen/web quality (small files)
- 150 DPI: Good for most purposes
- 300 DPI: Print quality standard
- 600 DPI: High-resolution print or archival
For multi-page PDFs, ImageMagick generates separate TIFF files by default (output-0.tiff, output-1.tiff, etc.). To create a single multi-page TIFF:
convert -density 300 input.pdf output multipage.tiffMethod 3: Using Ghostscript
Ghostscript is another free command-line tool that produces excellent TIFF output. It handles complex PDFs better than ImageMagick in some cases.
gs -dNOPAUSE -dBATCH -sDEVICE=tiffg4 -r300 -sOutputFile=output.tiff input.pdfThe -sDEVICE flag controls the TIFF type:
- tiffg4: Black and white, Group 4 fax compression (smallest files)
- tiffgray: Grayscale output
- tiff24nc: Full 24-bit color, no compression
- tiff32nc: CMYK color (for professional printing)
For legal documents and faxing, tiffg4 is usually what you want — it creates compact black-and-white TIFFs that are widely compatible.
Method 4: Mac Preview
If you're on a Mac, you can convert PDF to TIFF without installing anything:
- Open the PDF in Preview
- Go to File → Export
- Choose TIFF from the Format dropdown
- Set your resolution (72, 150, or 300 DPI)
- Click Save
This works well for single-page PDFs. For multi-page documents, you'll need to export each page individually or use one of the other methods.
Choosing the Right TIFF Settings
Not all TIFF files are the same. Here's how to pick the right settings for your use case:
For Professional Printing
- Resolution: 300 DPI minimum (600 DPI for fine art)
- Color: CMYK or 24-bit RGB
- Compression: LZW or none (avoid lossy compression)
For Faxing
- Resolution: 200 DPI (standard fax resolution)
- Color: Black and white (1-bit)
- Compression: Group 4 (CCITT)
For Archival
- Resolution: 300-600 DPI
- Color: 24-bit or grayscale as appropriate
- Compression: LZW or uncompressed
TIFF vs JPG vs PNG: When to Use Each
A quick comparison to help you choose the right format:
- TIFF: Lossless, large files, best for printing and archival
- JPG: Lossy compression, small files, best for photos and web
- PNG: Lossless, medium files, best for screenshots and graphics with text
Don't convert to TIFF if you're just sharing a document online or sending via email. JPG or PNG will serve you better. TIFF shines when quality absolutely cannot be compromised.
Common Problems and Fixes
File Size Too Large
TIFF files are big. A 10-page PDF at 300 DPI color can easily exceed 500 MB in TIFF. Solutions:
- Use LZW compression (lossless but reduces file size by 30-50%)
- Convert to grayscale if color isn't needed
- Reduce DPI to what's actually required (300 DPI for print is plenty)
- Use Group 4 compression for black-and-white documents
Quality Looks Wrong
If the output looks blurry, your DPI is probably too low. For print, always use 300+ DPI. If colors look off, make sure you're using the right color space — RGB for screen, CMYK for professional print.
Only First Page Converts
Some tools only convert the first page by default. Check your tool's settings for a "convert all pages" option, or use ImageMagick/Ghostscript which handle multi-page documents properly.
The Bottom Line
Converting PDF to TIFF is straightforward once you know what settings you need. For most people, an online converter at 300 DPI with LZW compression does the job. For professional printing or archival, use Ghostscript or ImageMagick for full control over output quality and format.
Skip TIFF unless you have a specific reason to use it — JPG and PNG handle 95% of PDF-to-image needs perfectly well.
Need to convert PDF to other image formats? Try our free PDF to JPG converter or PDF to Word tool.