A 3-page report should not be 25 MB. Yet it happens — a PDF balloons because of high-resolution scans, embedded fonts, or hidden layers the export tool left behind. Compression is the fix, but it is not one-size-fits-all. Compress too aggressively and your document becomes illegible; compress too lightly and you barely move the needle.
This guide covers everything from why PDFs grow large in the first place to the compression dials you can actually control — including DPI, image quality, and lossy vs lossless strategies — so you can shrink your files with confidence.
Why PDFs get large
A PDF's file size is overwhelmingly driven by the images embedded inside it. Text, even hundreds of pages of it, compresses to near nothing. A 50-page text-only contract is typically under 500 KB. A 50-page scanned contract — where each page is a full-resolution photograph — can easily exceed 50 MB. Understanding the size drivers puts you in control:
| Size driver | Typical impact | Fix |
|---|---|---|
| Scanned images (each page a photo) | 3-8 MB per page at 300 DPI | Reduce DPI to 150, use JPEG compression |
| Oversized photos | 5 MB single image for a 1-inch logo | Resize images before embedding |
| Embedded fonts | 0.5-5 MB per font | Subset fonts, use standard fonts |
| Hidden layers, annotations | Variable, can double file size | Flatten export, remove unused objects |
| Metadata and thumbnails | Small (KB range) | Strip in export settings |
Lossy vs lossless compression: what you need to know
PDF compression works on two axes: how you compress the data (the algorithm) and what you are willing to discard (quality vs size).
Lossless compression shrinks the file without discarding any information. The output is pixel-identical to the input. Techniques include removing duplicate objects, merging identical streams, and applying DEFLATE or ZIP compression to internal data. You get moderate size reduction — typically 10-40% — with zero quality loss. Lossless is ideal for legal documents, engineering drawings, and anything where visual fidelity is non-negotiable.
Lossy compression trades quality for smaller files by discarding information the human eye is unlikely to miss. This includes reducing image resolution (DPI), applying JPEG compression to embedded images, and downsampling color depth. Size reductions of 60-90% are common, but text on heavily compressed scans can become soft or blocky. Lossy is best for on-screen reading, email attachments, and archiving where file size matters more than print quality.
Most compression tools — including browser-based ones — let you choose a level that decides where you land on this spectrum. For a practical walkthrough of getting under email attachment limits, see our guide to compressing PDFs for email.
DPI explained: the single biggest lever
DPI (dots per inch) measures how many pixels represent each inch of the document. When you scan a page at 300 DPI, each square inch becomes a grid of 300 × 300 = 90,000 pixels. At 150 DPI, that same inch uses only 22,500 pixels — a quarter of the data. The file size scales roughly with the square of the DPI, so halving the DPI roughly quarters the image data.
| DPI | Relative image size | Best for |
|---|---|---|
| 72 DPI | Baseline (smallest) | On-screen only, slides, web |
| 150 DPI | ~4× larger than 72 | Email attachments, screen reading, archive |
| 200 DPI | ~7.7× larger than 72 | Good balance: readable text, reasonable size |
| 300 DPI | ~17× larger than 72 | Print-quality, high-fidelity reproduction |
The sweet spot: For most documents, 150-200 DPI produces text that is perfectly readable on screen while keeping files small. Reserve 300 DPI for documents you expect the recipient to print or zoom deeply into. If your PDF is destined for a projector slide deck, 72 DPI is sufficient.
Compression levels: which one to use when
Most compressors offer three to four presets — Light, Medium, Strong, and sometimes Extreme. Here is what is happening under the hood and when each one makes sense:
- Light / Screen: Primarily removes duplicate objects and metadata. Drops images to ~200 DPI. Typically reduces size by 20-40%. Use when: the document needs to look crisp for print or contains scanned signatures that must remain sharp.
- Medium / eBook: Drops images to ~150 DPI, applies moderate JPEG compression, strips unused objects. Typically reduces size by 40-60%. Use when: the document will be read on a screen — email attachments, digital reports, shared portfolios.
- Strong / Prepress: Drops images to ~100-120 DPI, applies aggressive JPEG compression to color images. Can reduce size by 60-80%. Use when: file size is the priority and some softness in images is acceptable — archiving large document sets, meeting tight upload limits, or embedding PDFs in web pages.
- Extreme / Maximum: Drops images below 100 DPI, converts all images to JPEG at low quality, strips fonts and metadata. Can reduce size by 80-95%. Use when: you just need a preview copy or a content-only reference — not for anything the recipient needs to read comfortably.
Pro tip: Always compress from the original, never from a file that has already been compressed. Each pass of lossy compression permanently discards detail; stacking multiple passes produces the worst of both worlds — a file that is both low quality and not meaningfully smaller.
How to compress a PDF in your browser (private, free)
- Open the Compress PDF tool. No sign-up needed.
- Drag your PDF into the dropzone or click to browse.
- Select a compression level — start with Medium.
- Click Compress. The tool processes the file in your browser.
- Check the output size. If still too large, re-compress from the original at Strong.
- Open the compressed PDF and spot-check a few pages for readability.
- Download and use.
Because processing runs in your browser, your PDF never leaves your device. This matters for contracts, tax documents, medical records, and any file with personally identifiable information. We cover the privacy implications in depth in our article on whether upload-based PDF tools are safe.
Batch compression strategies
If you have dozens of PDFs to compress, processing them one at a time is tedious. Here are strategies that scale:
- Merge first, compress once: Use the Merge PDF tool to combine all files into one, then compress the merged result. This is fast and avoids repetitive steps, but gives you a single compressed file rather than individual files.
- Command-line batch: With Ghostscript or qpdf, wrap the command in a shell loop. On Windows PowerShell:
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -dNOPAUSE -dBATCH -sOutputFile="compressed\\$($_.Name)" $_.FullName
}
- Desktop batch: Acrobat Pro includes an Action Wizard that applies the same compression preset to an entire folder. PDFsam Enhanced and other paid tools have similar batch capabilities.
Testing your compressed PDF: what to check
Before you send a compressed PDF, verify three things:
- Text readability: Open the PDF and read a paragraph from the middle of a page. If letters look fuzzy or jagged, use a lighter compression level.
- Image clarity: Check photos, charts, and logos. If they are blocky or color-banded, re-compress from the original at a lighter setting. For image-heavy PDFs, you can extract the images with PDF to Images, compress images individually, and rebuild the PDF with Images to PDF.
- Page count and structure: Scroll through every page. Confirm no pages are missing, page dimensions are correct, and form fields (if any) still work.
Compressing scanned PDFs: the special case
Scanned PDFs are just images wrapped in a PDF container, so they respond dramatically to compression. A 30-page scanned document at 300 DPI color can easily be 90 MB. Reducing to 150 DPI grayscale (if color is not needed) can bring it under 5 MB without making text unreadable. If your scanner has settings, set it to 150 DPI, grayscale, medium JPEG quality — that avoids most compression headaches downstream.
Common compression mistakes to avoid
- Compressing an already-compressed file: Always go back to the original. Each pass permanently loses quality with diminishing size returns.
- Using maximum compression for everything: The smallest file is not always the best file. A blurry contract looks unprofessional and can be harder to enforce legally.
- Forgetting to check form fields and links: Some compression methods strip interactive elements. Test form fields, hyperlinks, and bookmarks after compression.
- Skipping the spot check: Always open the compressed file and scroll through at least every fifth page before sending it.
Compress your PDF now — free and private
Drop your PDF into the Compress PDF tool. Choose a level, compress in your browser, and download — no upload, no account, no watermark.