Uttir
By Uttir 6 min read

How to Compress a PDF File Without Losing Quality (5 Free Methods)

Learn how to shrink a PDF file to 30-70% of its original size without visible quality loss. 5 free methods, including the fastest browser-based approach.

The fastest way to compress a PDF without losing quality is to use a free browser-based tool like Uttir's PDF Compressor. Drop your file in, pick a compression level, and download the result — it runs entirely in your browser, so the file never leaves your device. Most PDFs compress to 30-70% of their original size with no visible quality loss.

"This PDF is 24 MB. The email attachment limit is 10 MB. Help."

It's a familiar problem. You scan a contract, the file is huge. You export a 50-page report with images, the file balloons. You try to share a deck with a client, the upload fails. PDFs are great for preserving layout, but they're terrible at staying small when the content is image-heavy.

The good news: most "large" PDFs can be compressed to a third of their original size without anyone noticing the difference. The bad news: how you compress it matters — compress too aggressively and the text becomes pixelated, the images turn to mud, and the file becomes useless.

What's actually making your PDF big

Before you start compressing, it helps to know what's eating the bytes. PDFs can contain four kinds of content, and each compresses differently:

  • Text. Usually tiny. A 100-page document of plain text is maybe 200 KB. The PDF format is efficient for text.
  • Vector graphics. Diagrams, charts, and shapes drawn with math instead of pixels. Also very small — a complex chart is rarely more than 50 KB.
  • Raster images. Photos, scans, embedded screenshots, logos. This is where the bytes go. A single 3000 × 4000 pixel JPEG at high quality can be 4 MB by itself. A 50-page report with 2 photos per page is 400 MB before you've added any text.
  • Embedded fonts. Usually small (50-300 KB per font), but some PDFs embed every glyph of every font even when only a few are used. This is the silent killer for some documents.

When a PDF is huge, 90% of the time it's the images. The fix is to either downscale the images (lower resolution) or re-encode them at lower quality (smaller files for the same dimensions). Both lose information, but done right, the loss is invisible.

The fastest way: a browser-based PDF compressor

The Uttir PDF Compressor shrinks a PDF in your browser, using the same techniques the desktop tools use but without the upload. The whole process takes a few seconds for a typical file, longer for image-heavy ones.

Step by step:

  1. Open /pdf-compressor.
  2. Drop your PDF into the upload area, or click to select it.
  3. Pick a compression level. The tool offers three presets: Low (mild compression, near-original quality), Medium (recommended for sharing, usually 40-60% smaller), and High (aggressive, for email-attachment-size limits).
  4. Click Compress. The result downloads automatically.

Typical results: a 24 MB PDF with scans compresses to about 7-10 MB on Medium. A text-heavy PDF that's already small might only shrink by 10-20% because there's not much fat to trim.

Method 2: Preview (Mac, no download)

macOS Preview has a built-in "Reduce file size" option that's surprisingly effective for scanned PDFs. It works on the image data inside the PDF, not on the text, so text quality is preserved even at aggressive settings.

  1. Open the PDF in Preview.
  2. Choose File → Export.
  3. In the Quartz Filter dropdown, choose Reduce File Size.
  4. Click Save.

Typical results: 50-70% size reduction on scanned PDFs, with text remaining crisp. The catch: you can't control the compression level, and the output filename has "reduced" appended, which is mildly annoying for automation.

Method 3: Adobe Acrobat online (free with limits)

Adobe's online compressor at acrobat.adobe.com works, and the compression is excellent. The trade-offs are familiar: file size limit on the free tier, an Adobe account required for larger files, and your PDFs are uploaded to Adobe's servers for processing.

For a 5 MB document with no sensitive content, this is fine. For a 50 MB document with personal information, the upload is a real concern. The privacy policy says Adobe deletes uploaded files within 24 hours, but "trust us" is the entire model.

Method 4: Ghostscript (command line, the most powerful)

If you have ghostscript installed, you can compress PDFs from the terminal with full control over the quality:

# Screen quality (~72 dpi) — small files
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/screen    -dNOPAUSE -dQUIET -dBATCH    -sOutputFile=output.pdf input.pdf

# Ebook quality (~150 dpi) — recommended
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook    -dNOPAUSE -dQUIET -dBATCH    -sOutputFile=output.pdf input.pdf

# Printer quality (~300 dpi) — high quality
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/printer    -dNOPAUSE -dQUIET -dBATCH    -sOutputFile=output.pdf input.pdf

This is the most powerful option — you can tune every parameter — and the most private (nothing leaves your machine). It's also the least accessible: you need to install ghostscript and remember the syntax. For batch processing 100 PDFs, this is the right tool. For a one-off compression, the browser tool is faster.

Method 5: Re-export from the source

If you created the PDF from a Word document, Google Doc, or InDesign file, the most effective compression is to re-export it with smaller image settings. Word, in particular, embeds images at their full original resolution, even when the document displays them small. Re-exporting with "Save As PDF" and a lower image quality can shrink the file by 80% with no visible difference.

For a 20 MB Word doc that exports to a 15 MB PDF: open the Word file, File → Save As → PDF, click Options, and uncheck "Document structure tags for accessibility" if you don't need them, and lower the image quality. The resulting PDF is often 3-5 MB.

How to pick a method

  • One-off, on any device, no install: browser-based (Uttir).
  • Scanned PDF, on a Mac: Preview's "Reduce File Size".
  • Sensitive document: browser-based (private) or command line. Never upload-based.
  • Batch processing 100+ files, automation: Ghostscript.
  • You have the source document: re-export with smaller image settings — usually the best result.
  • Permanent company-wide tool: Adobe Acrobat Pro, or build a Ghostscript wrapper script.

What "good" compression looks like

Compression is one of those things where the answer depends on what you're doing with the file:

  • For email (under 10 MB): aggressive compression is fine. The reader is going to scroll through on a screen at 100% zoom; no one will notice the difference between 150 dpi and 300 dpi.
  • For printing: keep at 300 dpi. Anything lower prints visibly pixelated. Use /printer in Ghostscript or the lowest compression level in any tool.
  • For archive / legal: don't compress at all. You may need to print or reprint the document years from now, and you don't want to discover the images were downscaled to 72 dpi.
  • For on-screen reading: 100-150 dpi is plenty. Below that, text starts to look fuzzy on retina displays.

When not to compress

Compression is lossy. If your PDF is a master copy that you'll reprint, re-export, or otherwise reuse, don't compress it — keep the original and compress copies. The other PDF tools on Uttir work on whatever you give them, so a "small, lower-quality" version for sharing and a "large, master" version for archive is a normal workflow.

Also, if your PDF is already small (under 1 MB), compression usually can't help much. The bytes are already tight. The tool will run, but the result will be 5-10% smaller at best, which isn't worth the round trip.

How to verify the result

Before you replace your original with the compressed version, open both side by side and check:

  1. Text is still crisp at 100% zoom. If the text looks pixelated, the compression was too aggressive on the image layer.
  2. Photos don't have visible "ringing" or blocky artifacts. If they do, drop the compression level.
  3. The file opens in your reader. Some older PDF readers (and the Preview app on very old macOS) can choke on heavily compressed PDFs.
  4. The file size actually went down. Sometimes a "compressed" PDF is the same size or even larger than the original — usually because the original was already tightly compressed.

If anything looks wrong, try a lower compression level or a different method. The PDF format is robust enough that no single method is strictly better than the others — different tools handle different kinds of content better.

#pdf-tools#tutorial#productivity#tools-roundup

New tools and guides, once a week

One short email when something new ships. No tracking, no images, unsubscribe with one click.