All blog posts
PDF 7 min read

How to Compress a PDF to 100 KB Without Losing Quality

Government portals, email caps, and student application forms keep asking for PDFs under 100 KB or 500 KB. Here is exactly how to hit those targets in your browser, with no uploads.

If you've ever tried to upload a scanned ID, a transcript, or a signed contract to a government portal or scholarship application, you've probably hit the same wall: the form rejects anything over 100 KB, 200 KB, or 500 KB. Your PDF is 4 MB. Now what?

This guide walks through exactly how to compress a PDF to 100 KB without re-typing the document, without uploading it to a sketchy free site, and without losing readability. Everything below works in your browser — no installs, no signups.

Why portals cap PDFs at 100 KB or 500 KB

These limits are not arbitrary. Government and university portals serve millions of applicants on shared infrastructure. A 100 KB cap means a server provisioned for 50,000 concurrent applicants moves 5 GB of traffic — manageable. A 5 MB cap on the same flow is 250 GB. The cap exists to keep the form working on submission day.

Common real-world limits you'll run into:

  • India NSP / scholarship.gov.in: 200 KB per document
  • UPSC, SSC, IBPS: 20–500 KB per attachment, varies by form
  • Pakistan HEC e-portal: typically 1 MB cap for transcripts and 200 KB for photos
  • US college applications: usually 5 MB but with strict per-page caps
  • Email attachments: Gmail caps at 25 MB, Outlook at 20 MB

First, figure out what's bloating your PDF

A PDF that's "too big" is almost always one of two things: a scanned document (full of high-resolution raster images) or a born-digital PDF with embedded fonts and old-style image encoding. The fix is different for each.

Quick test: if your PDF is mostly text and was exported from Word or Google Docs, it's born-digital. If it came from a phone scanner app or a flatbed scanner, it's scanned. The latter is where the big wins live — a 12 MB scanned contract can drop to under 200 KB; a born-digital text PDF rarely shrinks more than 30%.

Path 1 — Re-pack the PDF (works on most files)

The simplest first step is lossless re-packing: object-stream compression and metadata stripping. This keeps every pixel and character identical and just removes redundant overhead. For most PDFs, you'll see 20–40% savings without lifting a finger.

Open our free Compress PDF tool, drop the file in, and pick the level:

  • Low — fastest, lossless re-save. Best for PDFs that just need a small trim.
  • Medium — recommended default. Strips redundant metadata and packs object streams.
  • High — aggressive packing. Best for large multi-page PDFs with repeated structures.

If your file dropped under the cap, you're done. If not, keep reading — the JPG round-trip below is what gets scanned PDFs to 100 KB.

Path 2 — The JPG round-trip (the trick that gets scans to 100 KB)

Scanned PDFs are really just images wearing a PDF coat. The PDF wrapper adds overhead, and the embedded images are usually saved at far higher resolution and quality than your form actually needs. The round-trip is:

  1. Convert each page to a JPG image at moderate resolution.
  2. Compress each JPG to ~70% quality (often the sweet spot for readable scans).
  3. Combine the compressed JPGs back into a single PDF.

A typical result: a 12 MB scanned contract → 6 JPG pages at 200 DPI → compressed to ~80 KB each → final PDF around 500 KB. Drop the JPG quality to 50% and you're at ~250 KB. Crop the margins first and you can hit under 150 KB. The text stays perfectly readable for human review and for OCR.

If you're optimizing for the absolute smallest size and don't need broad compatibility, also consider whether WebP would help. WebP typically saves another 25–35% over JPG at the same visible quality. Some portals accept WebP-embedded PDFs; many do not. Read our guide on JPG vs PNG vs WebP before going down that path.

Path 3 — Trim pages and resize

Sometimes you don't need every page. A 20-page transcript when the portal only asks for the most recent semester is wasted bytes. Delete the unneeded pages first, then compress. Or split out exactly the pages you need and compress only those.

For multi-document submissions, the opposite strategy can also help: merge multiple PDFs into one before compressing, since cross-page font and image deduplication often saves 10–20% extra compared to compressing each separately.

Things that don't actually help (and waste your time)

A few myths worth retiring:

  • "Print to PDF" again. This sometimes helps and sometimes doubles the file size, depending on whether your viewer rasterizes. Don't rely on it.
  • Renaming the file extension to .zip and back. PDFs are already compressed internally; this changes nothing.
  • "Email a smaller PDF" services that mail you a download link. They almost always upload your document to a server. If your PDF has personal information — and most form attachments do — that's the worst possible trade.
  • Free tools that watermark the output. Government portals will reject them on cosmetic grounds. Use a tool that doesn't add anything.

Why browser-only matters (especially for IDs and contracts)

Most online compressors ask you to upload your PDF to their server. That means a copy of your transcript, your bank statement, or your passport scan now lives on infrastructure you don't control. Even reputable services keep files for "processing" windows of hours to days. If the document contains a national ID number, a date of birth, or a signature, that's a data exposure you didn't sign up for.

Browser-side compression is structurally different: the file never leaves your device. WebAssembly runs the compression locally, your PDF goes from the file picker to the download button entirely in your tab, and closing the tab erases all of it. Every PDF tool on this site works this way.

Quick cheat sheet — file targets and the path that works

From hundreds of test files, these are the rules of thumb:

  • Target 1 MB from a 4–10 MB PDF: Medium compress is usually enough.
  • Target 500 KB from a scanned 5–15 MB PDF: do the JPG round-trip at Standard quality.
  • Target 200 KB from a 1-page scan: JPG round-trip at 60% quality, 150 DPI.
  • Target 100 KB from a single scanned page: JPG at 50% quality, 120 DPI, then combine. Crop margins first if you can.
  • Target 50 KB: only realistic for clean digital text PDFs with no images, or single-page scans cropped tight.

If you're prepping a scholarship or university package, you're probably also dealing with grade conversions. Different countries report grades on completely different scales, and most international applications expect a US 4.0 GPA. Our percentage-to-GPA conversion guide walks through the WES, HEC, US 4.0, and Indian 10-point scales side by side, with the math and the cutoffs.

Closing — what to do right now

If you're racing a deadline:

  1. Try Compress PDF on Medium. 30 seconds. Many files are done here.
  2. If still too large, do the JPG round-trip with PDF to JPGImage CompressorJPG to PDF.
  3. If still too large, delete unneeded pages and repeat.

The whole sequence takes about three minutes once you've done it once. And because every step happens in your browser, your document never leaves your device.

More guides from the ToolsPlanet blog.