Table of Contents
Definitions: Compression vs Optimization
People use these terms interchangeably. They shouldn't.
- Compression = reducing file size by discarding or compacting data. Goal: smaller bytes.
- Optimization = improving internal structure for performance, compatibility, or archival. Goal: better PDF.
Compression is a subset of optimization. All compression optimizes size. Not all optimization compresses.
What Compression Does
Targets the heavy payloads: images and fonts.
- Image downsampling: 300 DPI → 150 DPI (or 72 DPI)
- Image recompression: JPEG q=90 → q=75 (or q=50)
- Font subsetting: Full font → only used glyphs
- Stream recompression: Uncompressed → Flate/Zlib
Result: smaller file. Trade-off: potential quality loss (images), loss of unused glyphs (fonts — harmless).
What Optimization Does
Targets the structure — the "plumbing" of the PDF:
- Linearization (Fast Web View): Reorganizes file so page 1 loads first, then page 2, etc. Enables streaming in browser. Critical for large PDFs on web.
- Object deduplication: Same image/logo on 50 pages? Store once, reference 50 times. Our Merge PDF does this automatically.
- Metadata sanitization: Strip XMP, piece info, thumbnails, document info — or standardize for PDF/A.
- Cross-reference table rebuild: Fix broken offsets, remove gaps from incremental saves.
- Form flattening: Convert interactive fields to static appearances (for archival/print).
- Annotation cleanup: Remove invisible/duplicate annotations.
- Color space conversion: CMYK → RGB for screen; calibrate for PDF/X.
- Bookmark/outline optimization: Rebuild navigation tree.
Result: faster loading, better compatibility, smaller (sometimes), archival-ready. No visual quality loss — ever.
Where They Overlap
Our Compress PDF tool does both:
- Low level: Pure optimization — linearization, deduplication, metadata strip, stream recompression. Zero quality loss. 10–20% size reduction.
- Moderate level: Optimization + gentle compression (150 DPI downsampling, font subsetting). 40–70% reduction.
- High level: Optimization + aggressive compression (72 DPI, JPEG q=50). 70–90% reduction.
So "compress" in our UI = "optimize + optionally compress images/fonts."
When to Use Which
Use Compression (Moderate/High) when:
- File too big for email (25 MB limit)
- Upload portal has size limit
- Storage space tight
- Bandwidth limited (mobile, slow connection)
- Recipient only needs screen viewing
Use Optimization (Low) when:
- PDF loads slowly in browser (needs linearization)
- Preparing for web hosting (fast web view)
- Archival (PDF/A prep — strip private metadata, standardize)
- Print workflow (clean structure, no incremental save debris)
- Merging many files (deduplication saves huge space)
- Quality is non-negotiable (legal, medical, press)
How Our Tool Handles Both
Compress PDF gives you three levels. Think of them as:
- Low = Optimize (structure only)
- Moderate = Optimize + Smart Compress (recommended default)
- High = Optimize + Aggressive Compress (maximum size reduction)
All three run client-side via WebAssembly. Your file never uploads. The optimizer is a compiled C library (battle-tested in production PDF workflows) — same engine desktop tools use, running in your browser.
For merging: Merge PDF automatically deduplicates shared resources (fonts, images) across input files. That's optimization you get for free.
FAQ
What's the difference between compressing and optimizing a PDF?
Compression reduces file size by discarding/compacting visual data (images, fonts). Optimization improves internal structure (linearization, deduplication, metadata, cross-ref tables) — often reduces size too, but never loses quality.
Does optimizing a PDF reduce file size?
Often yes — deduplication, metadata stripping, and stream recompression can save 10–30% without any quality loss. But optimization's primary goal isn't size.
What does "linearized PDF" mean?
Also called "Fast Web View." File reorganized so page 1 loads first, then page 2, etc. Browser can start rendering before full download. Essential for large PDFs on web. Our Low/Moderate/High all linearize.
Can I optimize a PDF without compressing images?
Yes — use our Compress PDF Low level. Pure optimization: linearize, deduplicate, strip metadata, recompress streams. Images untouched.
Should I optimize before or after merging PDFs?
After. Merge PDF deduplicates across files (shared fonts, logos). Then run Compress PDF Low to linearize the merged result.
Is PDF optimization lossless?
Yes — by definition. Optimization never discards visual data. Compression (the lossy part) is optional.
Need a smaller, faster, cleaner PDF? Compress PDF — pick your level. Free. Private. Instant.