TIFF to PDF Converter: Free Online Tools and How to Use Them
Convert single and multi-page TIFF files to PDF using free online tools, desktop software, and command-line utilities.
AltoUnlockPDF Team
PDF Tools Expert
TIFF (Tagged Image File Format) is a high-quality, lossless image format favored in medical imaging, legal document scanning, and professional photography. Converting TIFF files to PDF is common for sharing, archiving, and document management.
Why TIFF Files Are Common in Business
- Medical imaging — DICOM systems often export as TIFF
- Legal scanning — Court documents and contracts are scanned at high resolution as TIFF
- Publishing — Printers request TIFF for highest quality
- Archiving — TIFF is the archival standard (LZW compression, no generation loss)
- Fax — Traditional fax systems produce multi-page TIFF files
What Makes TIFF Different
Unlike JPG, TIFF can be:
- Lossless — no compression artifacts
- Multi-page — one TIFF file can contain many pages
- Multi-layer — supports multiple channels
- Large — uncompressed TIFF files can be hundreds of MB
Method 1: AltoUnlockPDF (Free, Handles Multi-Page TIFF)
Our Image to PDF tool supports TIFF upload:
- Upload your
.tiffor.tiffile - Multi-page TIFFs are automatically split into pages
- Choose page size and quality settings
- Download the PDF
Method 2: Windows — Photos App
For single-page TIFFs:
- Open the TIFF in Photos app
- Press Ctrl+P → select Microsoft Print to PDF
- Print → Save
For multi-page TIFFs, Windows may only show the first page. Use LibreOffice Draw instead.
Method 3: LibreOffice Draw (Free Desktop App)
LibreOffice Draw handles multi-page TIFFs natively:
- Open LibreOffice Draw
- File → Open → select your TIFF file
- Multi-page TIFFs show all pages as slides
- File → Export as PDF
- Configure settings → Export
Method 4: Mac Preview (Native Support)
Mac Preview handles TIFF natively, including multi-page files:
- Open the TIFF file in Preview
- For multi-page TIFFs, all pages appear in the sidebar
- File → Export as PDF
Method 5: Command Line Tools
ImageMagick:
# Single TIFF to PDF
convert document.tiff output.pdf
# Multi-page TIFF to PDF
convert multipage.tiff output.pdf
# With compression optimization
convert -compress Zip -quality 100 document.tiff output.pdf
Python + PIL/Pillow:
from PIL import Image
import io
def tiff_to_pdf(tiff_path, pdf_path):
img = Image.open(tiff_path)
pages = []
for i in range(img.n_frames):
img.seek(i)
pages.append(img.copy().convert('RGB'))
if pages:
pages[0].save(
pdf_path,
format='PDF',
save_all=True,
append_images=pages[1:]
)
print(f"Converted {len(pages)} pages to PDF")
tiff_to_pdf('document.tiff', 'output.pdf')
Method 6: img2pdf (Lossless, Best Quality)
For preserving maximum TIFF quality without re-encoding:
pip install img2pdf
# Single TIFF
img2pdf document.tiff -o output.pdf
# Multiple TIFFs
img2pdf page1.tiff page2.tiff page3.tiff -o combined.pdf
# Set DPI
img2pdf --dpi 300 document.tiff -o output.pdf
img2pdf embeds the TIFF data directly without recompression, resulting in the smallest possible lossless PDF.
Batch TIFF Conversion
For converting many TIFF files at once:
# ImageMagick batch conversion
for file in *.tiff; do
convert "$file" "${file%.tiff}.pdf"
done
# Or with img2pdf
for file in *.tiff; do
img2pdf "$file" -o "${file%.tiff}.pdf"
done
TIFF Compression Modes in PDF
When converting TIFF to PDF, the compression method matters:
| Original TIFF | Best PDF Compression |
|---|---|
| Uncompressed | CCITT/ZIP |
| LZW | ZIP (deflate) |
| JPEG TIFF | JPEG in PDF |
| CCITT Fax | CCITT Group 4 |
For fax-quality black-and-white TIFFs (common in legal documents), CCITT Group 4 compression in the PDF preserves maximum quality at minimum file size.
The LibTIFF documentation is the authoritative reference for TIFF format specifications and compression options.
Related Articles
How to Convert Screenshots to PDF (Windows, Mac & Mobile)
Turn screenshots into PDF files on any device — ideal for documenting software bugs, saving web content, and creating step-by-step guides.
Read Article
How to Convert a Photo to PDF on iPhone (Quick & Easy)
Multiple ways to turn iPhone photos into PDF files — using the Files app, Safari, Shortcuts, and third-party apps. No computer needed.
Read Article
How to Convert Images to PDF With Small File Size
Convert photos and images to compact PDF files — balancing quality and file size for email sharing, web upload, or document archiving.
Read Article