A bloated PDF slows down email delivery, fails to upload to web forms, and clogs up shared drives. But the idea of "compressing" a document sounds risky — will the text blur? Will photos turn into pixel mush?
The answer is: it doesn't have to. With the right technique, you can reduce PDF size by 40–80% with no visible quality difference at normal viewing sizes. This guide covers every method, from a one-click browser tool to command-line power tricks.
Why Are PDFs So Large?
Before you compress, it helps to understand what's making your PDF heavy. There are three main culprits:
Over-embedded fonts
When Word or InDesign exports a PDF, it embeds the full font files — including every character and glyph in the typeface, even ones your document never uses. A single font family can add 200–500 KB. Using font subsetting (only embedding the glyphs actually used) slashes that dramatically.
High-resolution images
A photo taken on a modern smartphone is typically 4000×3000 pixels at 72+ DPI. That's 12 megapixels. For a PDF that will be read on screen or printed at standard sizes, a downsampled 150 DPI image is completely indistinguishable — and 80% smaller.
Structural bloat
PDFs accumulate internal overhead: deleted-page remnants, duplicate resource streams, XObject duplicates, and edit history. A document saved and re-saved many times in Acrobat can be 2× the size it should be. Linearising and cleaning the structure removes this instantly.
Compression Methods Compared
| Method | Typical Size Reduction | Quality Impact | Effort |
|---|---|---|---|
| PDF Size Reducer (browser tool) | 30–60% | None to minimal | One click |
| Re-export from Word with optimised settings | 20–50% | None | Low |
| Ghostscript (command line) | 40–80% | Adjustable | Medium |
| Adobe Acrobat PDF Optimizer | 20–70% | Very fine control | Medium |
| Online server-based tools | 30–60% | Varies | Low — but files uploaded |
Method 1 — PDF Size Reducer Browser Tool (Recommended)
The fastest, most private option. Everything runs in your browser — no file uploads, no size limits beyond your RAM.
Open the Compress PDF tool
Go to PDF Size Reducer → Compress PDF. You'll see a clean drop zone — no sign-up needed.
Drop in your PDF
Drag your file onto the zone or click to browse. The tool immediately shows the original file size and page count.
Choose a compression preset
Screen (smallest file, 72 DPI images — for web/email), Ebook (150 DPI — best balance), or Prepress (300 DPI — for print). For most documents, Ebook is perfect.
Download the compressed file
The output file card shows the new size and the percentage saved. Click Download. Done.
Compress your PDF now — free & private
No uploads, no account. Your file never leaves your device.
📦 Open Compress PDF ToolMethod 2 — Re-Export from Microsoft Word
If you still have the source document, re-exporting with the right settings often gives better results than post-processing the PDF.
In Word (Windows/Mac)
File → Save As → PDF → More options → tick "Minimum size (publishing online)" under Optimize For. This applies JPEG compression to embedded images and subsets fonts automatically.
Method 3 — Ghostscript (Command Line)
Ghostscript is the gold standard for batch compression and gives the most control. It's free, open-source, and available on Mac, Linux, and Windows.
# Screen quality — smallest file, 72 DPI
gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite \
-dPDFSETTINGS=/screen \
-sOutputFile=output_small.pdf input.pdf
# Ebook quality — 150 DPI, best balance
gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite \
-dPDFSETTINGS=/ebook \
-sOutputFile=output_ebook.pdf input.pdf
# Prepress — 300 DPI, for print-quality output
gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite \
-dPDFSETTINGS=/prepress \
-sOutputFile=output_print.pdf input.pdf
The four -dPDFSETTINGS values from smallest to largest: /screen, /ebook, /printer, /prepress. Install Ghostscript via Homebrew (brew install ghostscript) on Mac or via apt on Linux.
Tips to Get the Best Results
Text-only PDFs don't compress much
If your PDF is purely text (a contract, invoice, or report with no images), the gains from image compression are zero. Focus on structural cleanup and font subsetting instead.
Check output before sending
Always open the compressed PDF and spot-check a few pages — especially any pages with diagrams, charts, or fine print — before sending to a client or printing.
Avoid double-compressing
Running a PDF through a compressor twice rarely improves things and can degrade image quality. Start from the original file each time you need a different quality level.
Frequently Asked Questions
Share this guide