PDF files can balloon to enormous sizes — especially scanned documents, presentations, and forms with embedded images. Emailing a 50 MB PDF frustrates everyone involved. The good news: you can typically cut that size by 60–90% without any visible loss in quality.
Why PDF Files Get So Large
PDFs store several types of data that balloon file sizes:
- Embedded images — The biggest culprit. A single high-resolution TIFF scan can add 10–20 MB.
- Embedded fonts — Full font subsets include every glyph in the typeface, adding overhead even for rarely used characters.
- Revision history — Deleted content, old form-field states, and comment threads linger invisibly in the file structure.
- Duplicate resources — The same image referenced on multiple pages is sometimes embedded multiple times.
Lossless vs Lossy Compression
There are two fundamentally different ways to shrink a PDF:
Lossless compression removes redundant data structures without touching any content. Images remain at their original quality. Typical savings: 5–30%.
Lossy compression resamples embedded images at a lower DPI or higher JPEG ratio. Images look nearly identical on screen and when printed at standard sizes, but pixel data is permanently altered. Typical savings: 40–90%.
For most everyday uses — sharing reports, uploading to portals, emailing forms — lossy compression at a "balanced" setting is the right choice. The quality difference is invisible at normal viewing sizes.
Method 1: Compress PDF Online (Fastest, Free, No Software)
The fastest method requires nothing but a browser:
- Open PrivaTools Compress PDF.
- Drag and drop your PDF (or click to browse).
- Choose a compression level: Light, Balanced, or Extreme.
- Click Compress and download the result instantly.
Your file is processed and immediately deleted after download — it is never stored, indexed, or shared. If file privacy matters (medical records, legal documents, financials), this matters.
Method 2: Adobe Acrobat (Desktop, Paid)
Acrobat Pro's Reduce File Size and PDF Optimizer tools give granular control — you can independently dial down image DPI, remove embedded fonts, strip metadata, and prune revision history. Results are excellent but require an Acrobat Pro subscription (~$23/month).
For occasional compression needs, this is overkill. Use an online tool instead.
Method 3: Ghostscript (Command-Line, Free, Batch)
For developers or power users compressing many files:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \
-dPDFSETTINGS=/ebook \
-dNOPAUSE -dQUIET -dBATCH \
-sOutputFile=output.pdf input.pdf
The -dPDFSETTINGS flag controls quality: /screen (smallest), /ebook (balanced), /printer (high quality), /prepress (maximum quality).
Tips to Get Maximum Compression
- Strip metadata first — Remove author names, GPS data, and creation timestamps with Strip PDF Metadata before compressing.
- Flatten filled forms — Interactive fields carry overhead. Flatten the PDF before compressing if the form is already completed.
- Remove blank pages — Scanned documents often include blank separators. Delete them first.
- Don't compress twice — Running a compressed PDF through compression again yields minimal savings and can degrade quality further.
Realistic Size Expectations
- Scanned documents (image PDFs): 60–90% reduction with Balanced or Extreme.
- PDFs with embedded JPEG photos: 20–50% reduction with Balanced.
- Text-only PDFs: 5–20% reduction — there's little image data to compress.
- Already-compressed PDFs: Minimal savings; may even increase size slightly.
The Bottom Line
For most documents, the Balanced preset in a good PDF compressor will produce a file that looks identical to the original at all standard viewing sizes, at 40–70% smaller size. Start there — only reach for Extreme compression if file size is more critical than occasional print fidelity.