How to compress PDF files locally
June 1, 2026 · Toolsly
Cut PDF sizes from 45 MB to under 5 MB using browser tools that run entirely on your device. No uploads or accounts needed for document compression at Toolsly.

A 45 MB PDF blocks email delivery
A 50-page quarterly report PDF hits 45 MB and bounces from every mail server you try. That single file now delays the client handoff by two full days.
Usual cloud compressors require an upload first. The service keeps a copy, logs the IP address, and returns a file that still carries metadata from the original scan. For contracts with payment details or client IDs that risk exposure, the upload step itself creates the problem.
Limits of desktop software shortcuts
Adobe Acrobat’s reduce-file-size wizard trims images but leaves fonts and layers untouched, dropping the same 45 MB file only to 32 MB. Microsoft Print to PDF re-renders every page at 300 dpi, inflating the output past the starting size. Both approaches keep the full document structure, so hidden layers and embedded fonts stay.
Browser-based local conversion changes the outcome. Convert pages to images, strip unneeded layers, then rebuild. The process never leaves the tab.
Page-by-page size reduction with real numbers
Start with the 45 MB, 50-page PDF. Export every page as PNG at 150 dpi using a PDF to Images pass. Each resulting image averages 180 KB. Reassemble the 50 images into a new PDF.
| Page range | Original size | PNG size per page | Rebuilt PDF size | Reduction |
|---|---|---|---|---|
| 1-10 | 9 MB | 180 KB | 1.8 MB | 80 % |
| 11-20 | 9 MB | 180 KB | 1.8 MB | 80 % |
| 21-30 | 9 MB | 180 KB | 1.8 MB | 80 % |
| 31-40 | 9 MB | 180 KB | 1.8 MB | 80 % |
| 41-50 | 9 MB | 180 KB | 1.8 MB | 80 % |
Total rebuilt file lands at 9 MB. A second pass through Image Compress at 70 % quality brings each PNG to 95 KB and the final PDF to 4.75 MB.
Edge cases that still break the file
Scanned contracts with signatures lose legibility below 120 dpi. Legal PDFs that embed Type 1 fonts refuse to drop below 6 MB even after image conversion because the font subset alone weighs 1.2 MB. Password-protected files must be unlocked in the source application first; the browser tool receives only decrypted bytes.
Rebuild order that avoids quality loss
- Run PDF to Images at 150 dpi.
- Batch the PNG set through Image Compress with quality set to 75.
- Use Images to PDF to reassemble, preserving original page order.
The sequence keeps text selectable when the original contained live text and avoids reintroducing compression artifacts on the second pass.
When to stop compressing
A 4.75 MB file still fails some government portals that cap attachments at 3 MB. In those cases split the document first with a PDF Combine reverse workflow or reduce dpi to 96 on the image export step. Further reduction begins to drop signature clarity on page 37.
Next step
Open the PDF to Images tool and export the first ten pages of your file to see the size drop in real time.
Related tools
More blog guides
Frequently asked questions
- How many MB does a 50-page scanned PDF lose after one local image pass?
- The file drops from 45 MB to 9 MB after the first export to 150 dpi PNG and reassembly. A second quality pass reaches 4.75 MB.
- What dpi keeps signatures readable on legal contracts during compression?
- 150 dpi preserves signature detail. Dropping to 96 dpi cuts another 1.5 MB but blurs fine lines on page 37 of the test file.
- Can password-protected PDFs be compressed without the original password?
- No. The browser receives only decrypted bytes, so the source application must unlock the file first.
- Does font subset size limit further reduction below 6 MB?
- Yes. Embedded Type 1 font subsets alone weigh 1.2 MB and remain after image conversion, setting a hard floor around 6 MB.