How to Compress a PDF Without Losing Quality

You try to email a PDF and it bounces back: “file too large.” Or an upload form caps you at 5 MB and your scan is 12. Compressing a PDF is the fix — but how you compress it matters, both for quality and for privacy. Here’s what’s actually happening, and how to do it well.

Why PDFs get big in the first place

A PDF’s size is often driven by images, although embedded fonts, attachments and other objects can contribute. Scanned pages store pixels rather than just text instructions, so scanned or image-heavy files are the best fit for DraftFort’s page-rasterisation method.

How PDF compression actually works

PDF compressors may use one or more of these methods:

  • Downsampling — reducing the resolution of images to something appropriate for screen and normal printing (you rarely need 600 DPI to email a receipt)
  • Re-encoding — saving the images with more efficient compression (typically JPEG at a sensible quality level)
  • Removing bloat — stripping unused fonts, metadata and duplicated objects

DraftFort specifically renders every page to a canvas and re-encodes it as JPEG. That can make an image-heavy document smaller, but it is lossy: text and line art can soften, and all selectable text, hidden OCR, links, form fields and digital signatures stop being interactive document features.

The honest truth about text PDFs

Here’s what most “compress PDF” tools won’t tell you: a clean text PDF is already small, and compressing it can make things worse. To shrink a text page, these tools often rasterise it — turning crisp, selectable text into a flattened image. You lose the ability to search or copy the text, and you may not even save much space.

So the honest rule is:

  • Scanned or image-heavy PDF? Try compression and judge the measured result.
  • Clean text PDF (like an invoice or exported document)? It’s probably fine as-is; compressing trades away selectable text for little benefit.

A good tool tells you when your file is already well-optimised instead of degrading it. Ours does exactly that.

The privacy problem nobody mentions

Many PDF websites work by uploading your file to a server, compressing it there and returning it. For passports, returns, contracts, statements or medical records, read the operator’s retention and privacy terms before using that model.

There’s a better way. Modern browsers are powerful enough to compress a PDF entirely on your own device — the file never leaves your computer. That’s how our PDF compressor works: you can even watch your network activity and check that no PDF bytes are uploaded. Use the synthetic file and repeatable method in our Privacy Verification Lab.

How to compress a PDF privately

  1. Open our Compress PDF tool.
  2. Drag in your PDF (it stays in your browser — nothing is sent anywhere).
  3. If a portal has a strict limit, choose 100 KB, 200 KB, 500 KB, 1 MB or enter a custom target. Otherwise switch to Light, Recommended, or Maximum quality.
  4. Wait for the measured Target met or Target not reached result.
  5. Inspect the smallest text, then download if the trade-off is acceptable.

If your file is already small, the tool will tell you rather than quietly wrecking your text. Need to combine files first? Use Merge PDF. Splitting out a few pages? Try Split PDF — all of them run locally, in your browser.

Target mode tries progressively smaller page scales and tunes JPEG quality per page. It claims success only when the completed PDF is measured at or below the chosen byte limit. It does not pad a file to an exact number, and an extremely small target may be impossible for a long document. In that case the result is clearly labelled as a best attempt rather than compliant with the limit.

Technical source

Checked 14 July 2026. DraftFort uses Mozilla PDF.js to render each page; the official PDF.js rendering example shows how page scale controls canvas dimensions. The rendered page is then saved as JPEG and placed into a new PDF, which is why the output is image-only.