Why does my PDF file size keep growing?
A PDF starts out reasonably sized, and then every time it gets edited, signed, or re-saved, it somehow gets a little bigger, even when nothing about it looks different. This isn't your imagination, and it isn't random. There are a small number of concrete, well-understood causes.
The usual suspects
- Incremental updates that never get cleaned up. The PDF format supports appending changes to the end of a file rather than rewriting the whole thing, many editors do this by default because it's faster to save. The catch is that old, superseded versions of the content can be left sitting inside the file, invisible to you but still taking up space, until something does a full rewrite.
- Full-resolution images where a smaller one would do. A photo straight off a modern phone camera can be many megabytes. Embedding it at full size in a PDF that only displays it at a fraction of that resolution wastes most of that data.
- Duplicate embedded fonts. If a document is assembled from several sources (say, several merged PDFs, or pages added at different times), and each one embeds its own copy of the same font rather than sharing one, that adds up.
- Merging without cleaning up afterward. Combining several PDFs concatenates their content, overhead included, a merged file inherits every inefficiency of every source file.
Why this catches people off guard
The frustrating part is that none of these causes are visible from looking at the document. A PDF that looks identical to the version from three edits ago can be noticeably larger, because the size increase is happening in data that never gets displayed, old revisions, redundant font copies, full-resolution image data hiding behind a smaller on-page display size. Two PDFs that look the same on screen can differ in size by an order of magnitude depending entirely on how they were produced and how many times they've been re-saved.
A rough way to tell what's actually taking up the space
Without a dedicated inspector, the most reliable heuristic is simple: compare page count to file size. A 50-page contract that's mostly typed text should be a few hundred kilobytes to a couple of megabytes at most. If a similarly-sized document is instead tens of megabytes, scanned or embedded images are almost certainly the reason, text alone rarely accounts for that kind of size.
Fixing it
Compress PDF addresses both major causes, and it's worth matching the mode to the cause:
- If the bloat is from repeated editing and leftover incremental-update data, Quick clean re-saves the file's internal structure more efficiently without touching any content, text stays selectable.
- If the bloat is from large embedded images or scans, Strong compression re-renders each page at a resolution and quality you choose, which is where the real size reduction happens for image-heavy files.
- If you're not sure which cause applies, try Quick clean first, it's the lower-risk option, and if the file is still much larger than it should be afterward, that's a good sign the real cause is embedded images rather than leftover edit history.
Ready to shrink a bloated PDF?
Open Compress PDFFrequently asked questions
Does deleting content from a PDF automatically shrink the file?
Not always. Some editors mark content as deleted without immediately rewriting the file, leaving the old data in place. A clean re-save (or running it through a tool like Quick clean) is often needed to actually reclaim the space.
Why did my file get bigger after I merged several PDFs?
Because merging concatenates the source files' content, including whatever overhead each one already carried. If the sources were inefficient, that carries straight over into the merged file, running a compression pass afterward can clean it up.
Can I see which page is taking up the most space in a PDF?
Not with this site's tools currently, there's no page-by-page size breakdown. As a rough heuristic, image-heavy or scanned pages are almost always the biggest contributors, far more than text-only pages.