TroubleshootingCompressionHow-To⏱ 8 min read

PDF Size Not Reduced After Compression — Why and What to Do (2026)

You ran your PDF through a compressor and downloaded the result — but the file size is almost identical to the original. Maybe it shrank by 3%. Maybe it actually got larger. This is a well-known problem with specific causes. Understanding why it happens tells you exactly what to try instead.

The Four Reasons Compression Doesn't Work

PDF compression works by reducing the resolution of embedded images and removing redundant structural data. If there are no high-resolution images and no redundant data, there is nothing to compress. The four specific situations where compression fails:

  1. The PDF was already compressed by a previous tool
  2. The PDF contains mostly text, which is already stored efficiently
  3. The compression tool isn't suited to the specific file type
  4. The PDF contains encrypted or protected content the tool can't touch

Cause 1: The PDF Was Already Compressed

This is the most common reason compression produces minimal results. Modern scanner apps (CamScanner, Adobe Scan, Microsoft Lens), PDF export tools, and online services all apply compression when creating the PDF. By the time you run it through another compression tool, the images are already at a low resolution with JPEG compression applied. There is simply nothing left to reduce.

How to identify this: The file size per page is already small (under 300KB per page), or a previous compression attempt produced minimal reduction.

What to do: Compression won't help here. If you still need a smaller file, the options are: re-scan at lower settings, extract only the pages you need, or accept that the file is already near its minimum size.

Quick check: is your PDF already compressed?

Divide the file size by the number of pages. Under 200KB per page = already compressed. 200–500KB per page = compression may help somewhat. Over 500KB per page = compression will likely produce significant reduction.

Cause 2: The PDF Is Mostly Text

Text in PDFs is stored as font instructions — mathematical descriptions of character shapes, not pixels. This is extremely space-efficient. A 100-page text-only document might be only 300–500KB because there is no image data to compress.

Running a text-only PDF through a compression tool produces 5–15% reduction at best, because the tool targets image data that barely exists in the file. If your text PDF is unexpectedly large, the cause is usually embedded images: a scanned signature page, a high-resolution letterhead logo on every page, or a background image.

How to identify this: Try selecting text in the PDF — if you can highlight and copy text, it's stored as real text, not as images. Pages where you can't select text are image-based (scanned).

Cause 3: The Tool Used Isn't Effective for This File Type

Different compression tools use different algorithms and are more or less effective depending on the PDF content:

If Mac Preview made your PDF larger

Mac Preview's "Reduce File Size" filter uses a fixed algorithm that works poorly on modern, already-optimised PDFs. It's one of the least effective compression options available. Use ShrinkPDF, PDF24, or Ghostscript instead — all produce better results.

Cause 4: Encrypted or Protected Content

Password-protected PDFs and PDFs with permission restrictions (no printing, no editing) may have encrypted content streams that compression tools cannot access or modify. The tool receives an encrypted blob — it cannot see the image data inside, let alone compress it.

How to identify this: A lock icon appears when opening the PDF, or you're asked for a password. In some tools, a "permissions" message appears.

What to do: Remove the password protection first (requires the password), then compress. If you don't have the password, you cannot compress the file.

What to Do Instead

When standard compression fails, these alternatives work:

Option A: Re-Scan at Lower DPI (Most Effective for Scans)

If the document is a scan and you have access to the physical original, re-scanning at 150 DPI in grayscale produces a file 70–90% smaller than a 300 DPI colour scan — without any compression tool needed. This is always more effective than any post-scan compression when the original scan settings are the root cause.

Option B: Re-Export From Source

If the PDF was created from Word, PowerPoint, or Canva, re-exporting with size-optimised settings often reduces file size dramatically:

Option C: Use Ghostscript

Ghostscript is a free, local PDF engine that often achieves better compression than browser-based tools, especially for image-heavy PDFs:

Ghostscript maximum compression

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf

Install free: Windows (ghostscript.com), Mac (brew install ghostscript), Linux (sudo apt install ghostscript)

Option D: Extract and Compress Only the Pages You Need

If you only need specific pages from the document, extract them first using ShrinkPDF Split, then compress the smaller extracted file. A 5-page extract from a 50-page document is much easier to compress to a target size.

How to Prevent Oversized PDFs in Future

✓ Try ShrinkPDF Free — No Login Required

No registration. No file size limit. Your file never leaves your browser.

📚 Compress My PDF Now

Frequently Asked Questions

Why did my PDF get larger after compression?
This happens when the compression algorithm adds overhead that exceeds the data it removes. It's most common with very small PDFs (under 200KB), PDFs with almost no image content, or PDFs where the images are already at minimum quality. If compression increases your file size, use the original uncompressed version — it's already as small as it can reasonably be.
My PDF only compressed by 5%. Is that normal?
Yes, for certain file types. Text-only PDFs, already-compressed scans, and digitally-created documents often compress by less than 10% because there's minimal image data to reduce. A 5% reduction on a text-heavy Word export is typical and expected. For image-heavy scanned documents, 5% reduction after Maximum compression is a sign the file was already compressed by the scanner app.
Does the compression tool matter? Are some better than others?
Yes, significantly. Ghostscript (used by PDF24 and many server-side tools) achieves better compression ratios than browser-based JavaScript tools, especially for image-heavy PDFs. Mac Preview's Reduce File Size is consistently the worst option — it often produces larger files. For most everyday documents, ShrinkPDF and ILovePDF produce good results. When they don't, Ghostscript command line is the next step.
My PDF is already small but the portal still rejects it for size. What's happening?
Check the exact file size in bytes, not megabytes. A file displayed as '1.9MB' might actually be 1.98MB — which exceeds a 2.0MB limit. Also check whether the portal's limit applies per-file or per-submission-total. Some portals count all uploaded files combined. Compress to give yourself a clear margin — if the limit is 2MB, aim for under 1.7MB.
Will switching from PDF to JPG make the file smaller?
Sometimes, but with significant trade-offs. A JPG of a document page at 72 DPI might be 30–80KB — smaller than an equivalent PDF page. However, JPGs are single images with no text layer, no multi-page support, no selectable text, and potentially reduced legibility. Most government portals specifically require PDF format. Only convert to JPG if the portal explicitly accepts image files and JPG produces a file within the required size limit.