DashConvert
4 min read

TIFF to PDF: how to convert scans, faxes, and legal documents the right way

TIFF is the format lawyers, hospitals, and government agencies still use. Converting to PDF is easy โ€” doing it without losing multi-page structure, resolution, or metadata is what trips people up.

Why anyone still uses TIFF in 2027

If you're under 30 and work in tech, you might never have seen a .tif or .tiff file. If you work in law, healthcare, insurance, government, publishing, or archival, TIFF is a daily reality. Threads on r/legaladvice, r/paralegal, and r/sysadmin regularly feature "why is this a TIFF and how do I get it to open" questions.

The short reason TIFF persists:

  • Lossless. No JPEG-style quality loss on repeated saves โ€” matters for legal chain-of-custody.
  • Multi-page in a single file. A 50-page fax is one .tiff, not fifty .jpgs.
  • Standardized for scanners and fax machines. Most industrial scanners default to TIFF.
  • Government and court systems standardized on it decades ago and inertia is real.

The problem: outside those industries, nothing consumer-grade opens TIFF cleanly. Windows Photos struggles with multi-page TIFFs; Preview on Mac is better but still opens only the first page by default. That's why "TIFF to PDF" is such a common conversion.

The one-line answer

Drop the TIFF into TIFF to PDF. Multi-page TIFFs become multi-page PDFs, preserving page order and resolution. The PDF opens in every viewer, on every device, forever.

What to check before converting

Three things worth checking on the source TIFF:

  1. Page count. A "single TIFF" might be 50 pages. Right-click โ†’ Properties on Windows, Cmd+I on Mac shows page count.
  2. Compression type. LZW and CCITT Group 4 (fax) are lossless. JPEG-in-TIFF is lossy โ€” rare but exists. Only matters if you plan further editing.
  3. DPI (resolution). Fax TIFFs are usually 200 DPI. Scanned documents are usually 300 DPI. Archival scans can be 600+ DPI. Higher DPI means bigger PDF; converting a 600 DPI TIFF to PDF keeps it 600 DPI unless you specifically downsample.

Multi-page handling

The most common complaint on r/scanning: "I converted a 30-page TIFF and only got the first page." That means the tool didn't detect multi-page TIFF structure โ€” a limitation of many quick online converters.

TIFF to PDF reads all pages in a multi-page TIFF and produces a PDF with the same page count in the same order. If you have multiple separate TIFFs that should become one PDF, drop them all in at once โ€” they get concatenated in the order you drop them.

Preserve or reduce resolution?

Depends on the destination:

  • Legal filing, court submission, official record: keep original resolution. Do not compress. The file size hit is the price of admissibility.
  • Email or share for review: downsample to 200-300 DPI. A 600 DPI 20-page scan can be 100+ MB; at 200 DPI it's 15-25 MB and looks identical on screen.
  • Long-term archival on your own systems: keep original.

TIFF to PDF preserves resolution by default. To shrink, run Compress PDF on the output.

OCR is a separate step

Converting TIFF to PDF gives you an image-based PDF โ€” the pages look right, but you cannot search the text or copy-paste from them. That's fine for archival. It's not fine if you need to find "invoice #4472" in a 500-page scan later.

For searchable PDFs you need OCR (optical character recognition), which is a fundamentally different operation. Most desktop tools (Adobe Acrobat Pro, ABBYY FineReader) and some browser tools handle this, but it's slower and quality varies. Do the plain TIFF-to-PDF first; add OCR only if you actually need search.

Common failure modes

  • "Only the first page converted." Tool doesn't support multi-page TIFF. Try another.
  • "Colors look wrong." TIFF supports CMYK color; some converters convert to RGB assuming that's the intent. Usually fine, occasionally wrong for print work.
  • "File is huge." You kept archival resolution when you didn't need to. Downsample.
  • "Page order is wrong." Some tools read pages in reverse. Fix with Merge PDF after splitting and reordering.

Follow-up steps

  • Combining converted TIFFs from multiple sources: Merge PDF.
  • Batch of TIFFs where each is a single page and you want one PDF: Images to PDF handles the batch drop and page ordering.
  • Cutting file size before emailing: Compress PDF.

The privacy note that actually matters here

The industries that use TIFF โ€” law, healthcare, insurance, government โ€” are also the industries with the strictest data-handling requirements. HIPAA, GDPR, attorney-client privilege, court seal orders. Uploading a scanned medical record or subpoenaed document to a random online converter is almost always a compliance violation regardless of what the site's privacy policy says.

TIFF to PDF on DashConvert runs entirely in your browser. Nothing uploads. That's not a marketing point โ€” for regulated industries, it's the only architecture that's actually safe to use for these files.

Tools mentioned in this post