How to Compress a PDF Without Wrecking the Quality
Most oversized PDFs are oversized for one reason: the images inside them. Understanding where the bytes actually go tells you which lever to pull and how much you can save before quality visibly suffers.
What makes a PDF big
| Contributor | Typical share | Why |
|---|---|---|
| Scanned or photographic images | 70–95% | Full-page bitmaps at 300 DPI or higher |
| Embedded fonts | 1–10% | Full font files instead of subsets |
| Vector graphics | 1–15% | Charts and maps with very high path counts |
| Metadata, attachments, revisions | 0–20% | Incremental saves keep old object versions |
| Actual text | Under 1% | Text is tiny — it is almost never the problem |
A 40-page text report is typically a few hundred kilobytes. If yours is 25 MB, it contains images, and image handling is where compression happens.
The two levers that matter
- Downsampling — reducing image resolution. Going from 600 DPI to 150 DPI cuts pixel count by 16×.
- Re-encoding — storing images as JPEG at a chosen quality instead of a lossless format.
Everything else — removing metadata, subsetting fonts, discarding old revisions, deduplicating repeated resources — is lossless housekeeping that typically recovers a few percent.
Choosing a target resolution
| Use | Resolution | Result |
|---|---|---|
| Email or web viewing | 96–120 DPI | Smallest file, fine on screen |
| General office printing | 150 DPI | Good balance for most documents |
| Quality printing | 200–300 DPI | Modest saving, print-safe |
| Archival / legal originals | Keep as-is | Compress losslessly only |
How to compress a PDF in the browser
Compress a PDF locally
- 1
Open the Compress PDF tool
Open TheToolSera Compress PDF — files are processed inside the tab.
- 2
Add the document
Drop the PDF in. Nothing is uploaded to a server.
- 3
Pick a compression level
Start with the balanced preset; move to a stronger one only if you need more.
- 4
Compare the result
Check the reported size saving and inspect a page that contains images or fine detail.
- 5
Download
Save the compressed copy and keep the original until you are satisfied.
Compress PDF
Reduce PDF size with quality presets — no upload, no watermark, no sign-up.
Realistic expectations
- Scanned documents: 50–90% smaller is normal
- Image-heavy presentations exported to PDF: 40–70%
- Text reports with a few logos: 5–20% — there is simply not much to remove
- Already-optimised PDFs: near zero. Repeated compression only degrades quality
Lossy compression is not reversible. Compressing the same file twice re-encodes already-degraded images and produces visible artefacts around text in scans.
Common mistakes
Compressing before merging
Merge everything first, then compress once. Repeated passes stack quality loss.
Scanning at 600 DPI for email
Fix the source. Scanning text documents at 200–300 DPI produces a far smaller file with no useful loss.
Expecting text-only PDFs to shrink
If there are no images, there are no bytes to reclaim. The file is already small.
Losing searchable text
Aggressive compression of a scan can make OCR text harder to re-derive. Keep the archival original.
If the goal is an attachment limit, try splitting the document into logical parts instead of destroying image quality across the whole file.
Frequently asked questions
How do I get a PDF under a specific size?
Lower the image resolution in steps and re-check after each pass. If you still cannot reach the target, split the document instead of over-compressing.
Can I compress a PDF without losing quality?
Lossless optimisation — font subsetting, metadata and duplicate resource removal — is safe but usually saves only a few percent. Large savings require lossy image compression.
Why did my PDF get bigger after compression?
Re-encoding an already-optimised image can add bytes. If the output is larger, keep the original.
Is compressing a PDF online safe?
Only if the tool processes the file locally. Browser-based compression never transmits your document.
Put this into practice
Compress PDF runs entirely in your browser — no upload, no account, no limits.
Open Compress PDFRelated tools
Related guides
How to Merge PDF Files Without Uploading Them
Combine several PDFs into one document: how merging works, how to control page order and orientation, what breaks bookmarks and forms, and how to do it without uploading files.
How to Compress Images for the Web
A practical guide to image compression: lossy vs lossless, choosing quality levels, resizing before compressing, format choice, and compressing images in your browser.
Why Client-Side Tools Are Safer for Your Files
What actually happens when you upload a file to an online converter, how browser-based processing differs, how to verify a tool's claims, and when a server is unavoidable.
PNG vs JPG vs WebP: Which Image Format to Use
Compare PNG, JPG, WebP and AVIF on compression, transparency, quality and browser support, with a simple decision guide for photos, screenshots, logos and animation.
CSV vs JSON: Choosing the Right Data Format
Compare CSV and JSON on structure, nesting, file size, streaming, typing and tooling, with clear guidance on which to use for exports, APIs and analytics pipelines.
JSON vs XML: Which Format Should You Use?
A practical JSON vs XML comparison: syntax, size, parsing speed, schemas, comments, attributes and metadata — plus clear guidance on which format fits which job.