PDF Too Big to Upload? Here's What's Actually Taking Up Space
The Common App caps file uploads at 10MB. A lot of mortgage lenders and the IRS's e-file attachment tools aren't much more generous. If you've ever scanned a stack of pay stubs or a signed lease and hit a wall trying to upload it, the instinct is to Google "compress PDF" and grab the first tool that comes up. That usually works, but it's solving the problem from the wrong end.
Most oversized PDFs aren't bloated because of too many images — they're bloated because a scan was saved at print resolution when screen resolution would look identical. A single scanned page at 300 DPI (print quality) can run 3-5MB; the same page at 150 DPI looks the same on any screen and is a fraction of the size. Fixing this at the source saves you from needing a compressor at all.
This shows up most on phones. Almost nobody owns a real scanner anymore — everyone scans documents with their phone camera through an app, and the default in most of these apps leans toward "sharp" because that's what people notice and complain about when it's missing. Nobody goes looking for a resolution setting buried in the scan options, and app makers have no real incentive to surface one. The result is a document that should be a few hundred KB turning into two or three megabytes per page, and a stack of ten pages blowing past any reasonable upload cap before you've even added a cover letter.
Figure Out Which Kind of PDF You're Dealing With
Check the page count against the file size before doing anything:
- Scanned or photographed documents: a handful of pages running into multiple megabytes each. This is a resolution problem — see below.
- Exported design files (a resume template, a flyer, a PowerPoint-to-PDF): large because of uncompressed embedded images and full font subsets. This is where actual compression tools help.
- Merged PDFs: the size is just the sum of the originals. The fix is compressing before merging, not after.
Running a generic online compressor on a resume that's mostly vector text and one font won't do much — the tool has nothing meaningful to compress, and people conclude "compression doesn't work" when they were using the wrong tool for the file type.
There's a fourth case worth calling out separately: exported files with multiple embedded fonts. If a design or slide deck uses two or three specialty typefaces, exporting to PDF can embed the entire font file rather than just the characters actually used in the document. Word and PowerPoint both bury a setting for this under File → Options → Save, labeled something like "Embed only the characters used in the document" — it's off by default in a lot of installs, and turning it on can shave a meaningful chunk off a text-heavy file without touching a single image.
On a Mac, Skip Preview's "Reduce File Size" Button
Preview's File → Export menu has a Quartz filter called "Reduce File Size." It works, but the compression ratio is fixed and often makes scanned text look visibly soft — noticeable if you need to read a signature or a stamp on the page, and a real problem if the document needs to be printed afterward.
Use File → Export (not the Reduce File Size submenu) instead. It opens a fuller settings panel where you can adjust image quality independently of the text layer — most people never notice this panel exists because the quick option is one click closer.
On Windows, There's a Free Trick Most Guides Skip
If your source file is Word or PowerPoint, don't export to PDF and then compress — control the size at export time instead. Open the Print dialog and choose Microsoft Print to PDF as the printer (built into Windows, nothing to install), rather than "Save As PDF." This path rasterizes content at screen resolution first, and the resulting file is typically 30-50% smaller.
The tradeoff: the text becomes part of the image, so you lose the ability to select or copy it. If you need selectable text, skip this and use the command-line method below instead.
When Free Online Compressors Are Fine — and When They Aren't
Tools like Smallpdf and iLovePDF are fine for resumes, portfolios, or anything without personal data. Draw the line at documents containing a Social Security number, bank account details, medical records, or signed contracts. Don't upload those to a site you don't control, regardless of what its privacy page claims about auto-deleting files — you have no way to verify it actually happens, and scanned tax and financial documents are exactly the files people most often need to shrink.
For anything sensitive, spend the extra few minutes with a local tool instead. Worth sitting with for a second: a completely free web service still pays for servers and bandwidth, so the money has to come from somewhere — ads, or the data itself. There's no way for you to verify which, and scanned financial and tax documents happen to be exactly the files people most often need to shrink. For a resume or a portfolio piece that's headed somewhere public anyway, none of this matters — use whatever's fastest.
If You're Comfortable with a Terminal: Ghostscript in One Line
Ghostscript is free, open source, and processes everything locally:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
/ebook gives a moderate compression suited to on-screen reading. Swap in /screen for a smaller file at the cost of noticeably softer images — don't use that setting on anything you'll print. Install via Homebrew on a Mac (brew install ghostscript) or download the Windows build from the Ghostscript site.
If Nothing Above Gets You Under the Limit
When a single scanned page genuinely needs to stay high-resolution — a stamp or fine print that has to remain legible — there's a hard floor to how much any compressor can help. At that point, splitting the document into multiple uploads is usually faster than chasing a smaller compression ratio. Most application portals allow more than one attachment even when the interface doesn't advertise it; a quick call to support often resolves this faster than another round of compression tools.