How to Compress a PDF to 1MB for Upload Forms and Applications

A 1MB PDF limit is the most common ceiling on application forms: scholarship portals, university admissions, government services, visa applications, online job forms. Run a scanned ID through your phone and you will end up with a 4 to 8 MB PDF without trying. The good news: most PDFs can shrink to a tenth of their original size with no loss of legibility, if you understand what is making the file big in the first place.

Stack of documents and paperwork illustration representing PDF files

Why PDFs get large

A PDF is a container. It can hold text, vector graphics, raster images, fonts, attached files, and form fields. For almost every too-big PDF, the bulk of the bytes is one of these three things:

  • High-resolution embedded images. Phone scans are typically 300 dpi or more at full sensor resolution, which is overkill for a document.
  • Embedded fonts. Many PDFs embed every font used, sometimes including unused glyphs.
  • Inefficient encoding. PDFs built by older software may use uncompressed bitmaps where JPEG or JBIG2 would be 10 times smaller.

If you know which of these dominates your file, you will know which lever to pull.

Step 1: Find out what is making your PDF big

Open the PDF and look. Is it mostly a scanned document (image of a printed page)? Then the images are the problem; re-scan at lower resolution or run an image-focused compressor. Is it a born-digital document (text and inline images from Word, Pages, or Google Docs)? Then fonts and embedded high-res images are the likely culprits. Is it a mixed document (signed forms, mixed scans and text)? Then you will get the biggest wins from the image side.

If the PDF was created by exporting from a word processor, try re-exporting with minimum size or screen quality first; it is often the fastest five-minute fix.

Step 2: Compress with the right tool

Adobe Acrobat (paid)

Open the PDF, File then Save as Other then Reduced Size PDF, or Save as Other then Optimized PDF. The Optimized PDF dialog lets you control image resampling, font embedding, and clean-up. For most application forms, set Make compatible with to Acrobat 7.0 or later and click OK.

Preview (macOS, free)

Open the PDF, File then Export, choose PDF, and in the Quartz Filter dropdown pick Reduce File Size. Preview's filter is aggressive; if the result is too blurry, you can install custom filters that use friendlier settings.

Ghostscript (free, command line)

Ghostscript is the most flexible free option. A typical screen-quality command is gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf. The PDFSETTINGS presets are /screen (smallest, 72 dpi), /ebook (better quality, 150 dpi), /printer (300 dpi), and /prepress (very large). For a 1MB target on a scanned multi-page document, /screen is usually the right starting point.

Browser tools

For a small, non-sensitive PDF, browser-based tools like Smallpdf, ILovePDF, or PDF24's online compressor can do the job in two clicks. Do not upload PDFs containing IDs, passports, financial information, or anything you would not email to a stranger; those tools process files on remote servers.

Step 3: Re-scan instead of compressing

If you are starting from a phone scan, the fastest path to a small PDF is usually to re-scan rather than compress. Most scanner apps (Adobe Scan, Microsoft Lens, Apple Notes, Google Drive scan) let you pick a quality preset. Use the small-file-size or letter or B and W option:

  • Black and white at 150 dpi for plain text documents.
  • Greyscale at 200 dpi for documents with signatures or handwritten notes.
  • Colour at 150 dpi only when colour matters (for example, a coloured stamp).

A 10-page black-and-white scan at 150 dpi is typically 300 to 700 KB, well under 1MB without further compression.

Step 4: Trim unnecessary pages and metadata

  • Delete blank pages and pages the recipient did not ask for.
  • Flatten form fields if the form does not need to remain fillable; flattening converts interactive widgets to static content and reduces overhead.
  • Remove embedded thumbnails (in Acrobat: Document then Remove Thumbnails).
  • Remove attached files (you would be surprised how often PDFs include hidden attachments).

Worked example

Starting point: a 4-page colour scan of a signed contract, captured at 300 dpi, weighing 6.8 MB. Open in Preview on macOS, Export, Quartz Filter, Reduce File Size; the output drops to about 850 KB but looks slightly washed out. Try again with Ghostscript using /ebook instead of /screen; the output is about 1.4 MB, over the limit, but sharper. Convert the scan to greyscale (the signature is dark and legible against white); the Ghostscript /ebook output now lands at 720 KB, looks clean, and is well under 1MB.

That iterative approach, try a setting, look at the result, adjust, is faster than trying to guess the exact tool that will hit your target first try.

What to avoid

  • Printing to Microsoft Print to PDF or Save as PDF to shrink a file. This does not compress images; in many cases it makes the file larger by rasterising vector content.
  • Uploading sensitive documents to random online compressors. Keep IDs, banking documents, and medical scans on local tools.
  • Running OCR re-rendering as a default. Re-running OCR on a compressed image can degrade legibility. Run OCR before compression, not after.

FAQ

Why is my PDF still over 1MB after compression?

The most common cause is colour scans at high resolution. Convert to greyscale (or black and white if appropriate) and re-export. If that still is not enough, drop the scan resolution to 150 dpi and re-export.

Will compression lose my signature?

It should not, if you keep DPI at or above 150 and use moderate JPEG quality. Always open the compressed file and visually inspect the signature page before submitting.

Is Reduce File Size the same in every tool?

No. Adobe Acrobat's Optimised PDF, Preview's Quartz Filter, Ghostscript's PDFSETTINGS, and online compressors all make different trade-offs between image resolution, JPEG quality, font subsetting, and metadata. If one tool gives an unacceptable result, try another.

Can I split a PDF instead of compressing it?

If the receiving system allows multiple attachments, yes. Splitting a long PDF into per-page files often keeps each part well under 1MB.

How do I check the final file size on mobile?

On iOS, open the Files app, long-press the PDF, and tap Info. On Android, open the file manager, tap and hold the PDF, and tap Details. Aim for at least 50KB under the limit to avoid rounding surprises.

Is there a fully offline option that respects privacy?

Yes; Ghostscript and Preview run locally and do not upload your file. They are the right choice for any document with personal information.

Related reading

Comments