How to Compress a PDF to Under 1MB — Step-by-Step 2026 Guide
A job application portal that rejects your CV. A council tax form with a "maximum 1MB" warning. A university submission that keeps bouncing. Getting a PDF under 1MB is one of the most common file-size problems people run into — and the right method depends entirely on what's inside the PDF. This guide walks through every technique that actually works, from fastest to most powerful.
1MB
limit used by most UK government portals
~20KB
size of a well-made 1-page text PDF
90%+
reduction possible on scanned docs via Ghostscript
0s
upload time using ClickyFix — browser-only
Why 1MB is the magic number
The 1MB threshold crops up across a wide range of platforms and services — not because there is anything technically special about it, but because it became the default "reasonable file size" setting for portal developers in the early 2000s and was never revisited. Here are the most common places where you will hit a 1MB wall:
| Platform / Service | Limit | Notes |
|---|---|---|
| UK Government (GOV.UK forms) | 1–2 MB per file | Varies by department; DWP, DVLA, HMRC all enforce limits |
| LinkedIn job applications (CV) | 5 MB | Rarely a problem; 1 MB is the practical target for ATS parsing |
| NHS eReferral attachments | 1 MB | Per file; clinical letters, letters of referral |
| University Moodle / Turnitin | 1–10 MB | Varies by institution; 1 MB is the most common floor |
| Rental application portals | 1–5 MB | Proof-of-income docs, bank statements |
| UK visa applications (UKVI) | 1 MB per document | Strongly enforced; exceeding it causes upload failure |
| Council planning applications | 1–5 MB per document | Site plans, drawings, supporting statements |
| Legal e-filing (CE-File, HMCTS) | 10 MB | But 1 MB is still the target for fast uploads |
| Email (if used as attachment) | 25 MB (Gmail) | 1 MB is simply courteous for email recipients |
Can your PDF reach 1MB?
Before you spend time compressing, it is worth knowing whether 1MB is a realistic target for the type of PDF you have. The table below gives honest estimates based on what the file actually contains:
| PDF Type | Typical Raw Size | Achievable Under 1MB? | Best Method |
|---|---|---|---|
| Text-only (letter, CV, contract) | 50–500 KB | ✓ Already under 1MB usually | Lossless browser tool |
| Word / Google Docs export | 500 KB – 4 MB | ✓ Yes, almost always | Lossless or re-export |
| Presentation (PowerPoint export, few images) | 2–8 MB | ✓ Yes with image re-encoding | Ghostscript /ebook or iLovePDF |
| Scanned document (1–3 pages) | 3–12 MB | ✓ Yes at 150 DPI | Ghostscript /ebook |
| Scanned document (10+ pages) | 30–120 MB | ⚠ Partial — split into sections | Split + Ghostscript per section |
| Design portfolio (high-res images) | 20–100 MB | ⚠ Marginal — quality loss required | Ghostscript /screen (72 DPI) |
| CAD / technical drawing export | 5–40 MB | ⚠ Depends on vector vs raster | Re-export at lower image DPI |
| Bank statement (3 months, scanned) | 4–15 MB | ✓ Yes, significant reduction possible | Ghostscript /ebook |
Method 1: Lossless browser compression (fastest, zero quality loss)
Open ClickyFix PDF Compressor, drop your file, and download the result. Nothing is uploaded — all processing happens in your browser using pdf-lib.
What it does: re-serialises the PDF with compressed cross-reference tables and removes redundant structural overhead. It does not touch image data, so image quality is preserved exactly.
Reduction range: 5–40%. Best results on Word exports, spreadsheets, and digitally-created PDFs with metadata bloat. Least effective on pure scans.
Use this if: your PDF is a CV, letter, report, or Word export — or if you are handling sensitive documents that must not leave your device.
Method 2: Online tools with image re-encoding (moderate reduction)
Tools like iLovePDF, Smallpdf, and PDF2Go upload your file to a server and apply Ghostscript compression with image downsampling. This produces much larger reductions than browser-only tools because images are re-encoded at lower resolution.
Reduction range: 30–80% depending on image content.
Trade-offs: your file is uploaded to a third-party server and retained for 1–24 hours. Do not use these for medical records, financial documents, or anything with personal information if you have privacy concerns.
| Tool | Free limit | File upload? | Data retention |
|---|---|---|---|
| iLovePDF | Up to 100 MB | Yes | Deleted after 2 hours |
| Smallpdf | 2 tasks/day | Yes | Deleted after 1 hour |
| PDF2Go | Up to 50 MB | Yes | Deleted after 24 hours |
| ClickyFix | Unlimited | No — browser only | N/A |
Method 3: Ghostscript — the deepest reduction available
Ghostscript is the open-source engine used by most online compression services. Running it locally gives you maximum reduction with no upload and full control over quality. Install it from ghostscript.com (free), then run:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \ -dPDFSETTINGS=/ebook \ -dNOPAUSE -dQUIET -dBATCH \ -sOutputFile=output_small.pdf input.pdf
Choose your -dPDFSETTINGS based on the target size vs quality trade-off:
| Setting | Image DPI | File Size | Readable on screen? | Printable? |
|---|---|---|---|---|
/screen | 72 DPI | Smallest (often under 500KB) | Yes | Barely — blurry on paper |
/ebook | 150 DPI | Small — target for 1MB | Yes, sharp | Acceptable for most |
/printer | 300 DPI | Medium | Yes | Yes — good quality |
/prepress | 300 DPI | Larger | Yes | Yes — press ready |
/ebook first. It gives 150 DPI images — enough to read clearly on any screen and acceptable for office printing — and typically cuts a 5–10 MB PDF down to under 1MB. Only drop to /screen if /ebook leaves you just over the limit.On Windows without a command line
Ghostscript installs a program called GSview which provides a GUI wrapper. Alternatively, install Ghostscript and use the Start menu shortcut "Ghostscript (Drag and Drop)" to process files without typing commands.
Batch processing multiple files
On Windows PowerShell:
Get-ChildItem *.pdf | ForEach-Object {
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH `
-sOutputFile="small_$($_.Name)" $_.FullName
}Method 4: Re-export from the source file
If you have the original Word, PowerPoint, InDesign, or Google Docs file, re-exporting with optimised settings is often the cleanest route — no quality loss, no third-party tools.
Microsoft Word → PDF
- File → Save As → PDF
- Click Options (bottom of save dialog)
- Under "Include non-printing information", uncheck Document properties and Document structure tags
- Select Minimum size (publishing online) under the Optimize for section if available
Microsoft PowerPoint → PDF
- File → Export → Create PDF/XPS
- Click Options
- Reduce image resolution: uncheck "High quality" and pick 96 DPI or 150 DPI in the slide settings
Google Docs / Slides → PDF
File → Download → PDF document. Google's PDF export is already well-optimised for file size. A 20-slide presentation with moderate images typically exports at 500 KB – 2 MB.
Scanned documents — rescan at lower DPI
If the PDF is a fresh scan, rescan at 150 DPI instead of 300 DPI. File size scales with the square of resolution — halving the DPI gives roughly a 4× reduction in image data. 150 DPI is perfectly sharp for any screen and acceptable for most printed documents.
Try lossless compression first — it's instant and free
Drop your PDF into ClickyFix. Nothing is uploaded. If lossless isn't enough, come back to the methods below.
Open PDF Compressor →Method 5: Split the document
If your PDF simply cannot be compressed to 1MB (a 50-page scanned booklet, for example), splitting it into sections may be the only option that meets a hard portal limit. Each section compresses to a smaller base size, and you submit them as separate files.
Use ClickyFix PDF Splitter to extract a page range (e.g. pages 1–5) or split into equal-sized parts. All processing is browser-side — nothing uploaded.
| Scenario | Split strategy |
|---|---|
| 3-month bank statement, 15 pages | Split into 3 × 5-page files (one per month) |
| 40-page technical document | Split into chapters — usually natural break points exist |
| Portfolio with 20 project pages | Split by project — submit each as a separate attachment |
| Scanned multi-document submission | Extract each document as its own file, compress individually |
When 1MB may not be achievable
Some PDFs genuinely cannot be brought under 1MB without making them unreadable. It is worth knowing when to stop trying and use a workaround instead:
- High-res architectural drawings or CAD exports with fine detail that degrades at lower DPI. At 72 DPI the lines become unclear and the document loses its purpose.
- Multi-page colour brochures where each page is a full-bleed photo. Even at 72 DPI, 20 pages of full-page photography will be 3–5 MB.
- PDFs with embedded media — audio, video, or 3D models. These cannot be removed by standard compression; they need to be stripped manually in Acrobat.
- Heavily encrypted PDFs — encryption wraps the content and prevents re-processing. You must remove the password first, then compress.
Workarounds when 1MB is impossible:
- Upload to Google Drive / Dropbox and share the link instead of attaching the file
- Use PDF Splitter to send relevant pages only — not the full document
- Contact the portal or form owner directly — most have an alternative submission route for larger files
- Convert colour pages to greyscale in Acrobat or with Ghostscript (
-sColorConversionStrategy=Gray)
document.pdf to document.doc hoping to bypass the file size check. Modern portals validate the actual file size and MIME type — this will not work and may flag your submission.Frequently Asked Questions
Q: My CV is already a 1-page Word document — why is the PDF 2MB?
A: Word embeds the full copy of every font used, plus a thumbnail preview of the document. A single-page CV with two custom fonts can easily be 1.5–3 MB. To fix it: File → Save As → PDF, click Options, and under 'Include non-printing information' uncheck Document properties and Document structure tags. For the fonts, save a copy of the file first, then switch to system fonts (Arial, Calibri, Times New Roman) before exporting. Alternatively, run the PDF through ClickyFix — it strips much of the overhead losslessly.
Q: I used iLovePDF and my PDF is still 1.3MB — what next?
A: iLovePDF's default compression uses the /ebook profile (150 DPI). If the result is still over 1MB, try switching to the 'strong' compression option in iLovePDF, or run the output through Ghostscript with -dPDFSETTINGS=/screen. Bear in mind that /screen drops images to 72 DPI, which will noticeably reduce image sharpness.
Q: Will compressing a bank statement make it unreadable or look tampered with?
A: A lossless compression (ClickyFix) does not change a single pixel — the document looks identical. Image re-encoding (Ghostscript /ebook at 150 DPI) may soften very fine print slightly but text remains fully readable. If you are submitting a bank statement for a mortgage application or rental check, use lossless-only methods to avoid any suggestion that the document has been altered.
Q: Can I compress a PDF on my phone?
A: Yes. ClickyFix works in any modern mobile browser — open clickyfix.com/pdf-compress on your phone, tap to select your PDF from Files / Downloads, and download the result. No app install required. iLovePDF and Smallpdf also have mobile apps if you need heavier compression.
Q: Is there a way to set a target file size rather than a quality level?
A: Not directly in Ghostscript or most free tools — they work by setting a quality/DPI level and the resulting file size is a consequence of the content. The practical approach is to try /ebook first, check the output size, then use /screen if still too large. Adobe Acrobat Pro's PDF Optimiser shows live file size estimates as you adjust settings, making it the closest thing to a true size-targeting tool.
Q: Does the number of pages affect whether I can hit 1MB?
A: Yes — significantly. A 5-page text-only PDF is trivial to keep under 1MB. A 30-page scanned document at 300 DPI is 30–60 MB before compression and may come down to 2–4 MB at /ebook, which is still over 1MB. The per-page content type matters more than the page count alone: 50 pages of typed text is still smaller than 5 pages of full-colour photography.
Published 12 June 2026 · ClickyFix Blog