FileKit
All posts
·5 min read

How to Compress a PDF to Under 1 MB

Practical methods for shrinking a PDF to meet 1 MB upload limits — covering browser tools, DPI reduction, splitting, and what to do when compression is not enough.

Why 1 MB Matters

Many online forms, government portals, and application systems cap uploads at 1 MB. College admissions, visa applications, and insurance claim forms are common culprits. When your scanned document or exported PDF is 5 MB, you need a reliable way to get it under the limit without making the text unreadable.

What Determines PDF File Size

Before compressing, understand where the bytes come from. A PDF is essentially a container holding text, fonts, images, and metadata. Images almost always dominate:

  • Scanned pages are full-page raster images. A single 300 DPI A4 scan is roughly 3 MB in JPEG, 25 MB uncompressed.
  • Embedded photos from PowerPoint or Word exports can be 2-8 MB each if not downsampled.
  • Fonts and metadata usually add 0.5-2 MB. Text itself is negligible.

Step-by-Step: Compress a PDF to Under 1 MB

Method 1: Browser-Based Compression

The fastest approach for most people. Open FileKit PDF Compressor, drop your file, and select Strong compression. This recompresses internal JPEG images and strips metadata, typically reducing a 5 MB file to 1-2 MB.

If the result is still above 1 MB, the file likely contains high-resolution scans. Consider re-scanning at 150 DPI instead of 300 DPI, or converting the PDF to images first, resizing, then combining back.

Method 2: Reduce Image Resolution

If your PDF contains photos or scans, the single most effective action is lowering image DPI. For on-screen viewing, 150 DPI is sufficient. For most upload forms, even 100 DPI works. In Ghostscript:

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \
  -dPDFSETTINGS=/screen \
  -dNOPAUSE -dQUIET -dBATCH \
  -sOutputFile=small.pdf original.pdf

The /screen preset targets 72 DPI — aggressive but effective for getting under 1 MB.

Method 3: Split and Compress

If the PDF has many pages and the portal accepts multiple files, use PDF Split to break it into smaller chunks, then compress each one individually.

Size Expectations by Content Type

ContentBeforeAfter (Strong)
Text-only report (10 pages)200 KB150 KB
Scanned document (5 pages)8 MB1.5-2 MB
PowerPoint export with images12 MB2-4 MB
Photo-heavy brochure20 MB3-5 MB

When 1 MB Is Not Achievable

Some documents simply contain too much image data. A 50-page scanned thesis at 300 DPI will be 30+ MB — no lossless trick gets that under 1 MB. Your options:

  • Re-scan at a lower DPI (150 or even 100)
  • Convert to grayscale if color is not essential
  • Split the document and upload in parts
  • Contact the receiving party to request a higher limit

Tips for Staying Under the Limit

  • Export from Word/Docs with “Reduce file size” options enabled
  • Avoid pasting screenshots — use text when possible
  • Remove unnecessary pages before compressing with PDF Page Remover
  • Compress before adding signatures — re-compression invalidates them