Compress PDF to 100KB
Drop PDFs here, or click to browse
Your files never leave your browser
Many exam and government portals — UPSC, SSC, IBPS, SBI PO — cap document uploads at 100KB or less. Client-side compression optimises your PDF's internal structure and can meaningfully shrink text-based documents, but it cannot force an arbitrary target size the way a server-side image recompression pipeline can, because it doesn't re-encode embedded images. If your PDF is scanned or photo-heavy and 100KB is a hard requirement, you'll get more reliable results from a server-based compressor built for exact target sizes.
Which PDFs actually reach 100KB
The 100KB tier is the tightest cap in common use, and whether you can hit it depends almost entirely on how the PDF was made. A PDF exported from Word, Google Docs or LaTeX is mostly text and vector data, so structural optimisation — deduplicating fonts, dropping unused objects, compressing streams — often takes a 300–600KB file well under 100KB with no visible change. A PDF built from phone photos or a flatbed scan is really a container for large JPEGs, and those JPEGs dominate the file size. Structural optimisation might shave 5–10% off such a file; it cannot approach 100KB, because reaching that number requires re-encoding the images themselves at lower quality.
What to do when 100KB is non-negotiable
If a portal hard-rejects anything above 100KB and your document is scanned, the fix is upstream of compression. Rescan at 200 DPI in greyscale rather than 300 DPI colour — legibility for a printed certificate holds up fine at 200 DPI, and greyscale removes two-thirds of the colour data. If you are photographing a document with a phone, crop tightly to the page edges before converting: background desk, hands and shadow are pure wasted bytes. Splitting a multi-page PDF and uploading only the page actually requested is often the fastest path of all, since many portals ask for a single certificate but people upload the whole scanned booklet.
Frequently asked questions
- Can this guarantee my PDF will be exactly 100KB?
- No. Client-side compression optimises the PDF's structure but does not re-encode embedded images, so the final size depends on your file's content. A text-based PDF will usually clear 100KB comfortably; a scanned one may not move much at all. For a guaranteed target size on scanned documents you need an image-aware, server-side compressor.
- Why do exam portals ask for 100KB specifically?
- Many government and exam portals run on infrastructure sized years ago, with per-application storage budgets measured in a few hundred kilobytes across all uploads. A 100KB cap per document keeps millions of applications within that budget. The number is an infrastructure constraint, not a quality judgement.
- My scanned admit card is still over 100KB — what now?
- Rescan at 200 DPI in greyscale, crop tightly to the page, or split out just the page the portal asked for. Any of the three usually does more than compression alone, because they reduce the image data before it ever enters the PDF.
- Will compressing to 100KB make my document unreadable?
- Structural compression does not touch how the page looks, so no. What can hurt legibility is aggressive image re-encoding, which is exactly why this tool does not do it silently — you keep the original visual quality and see honestly whether the target was reached.
- Is a 100KB PDF too small to be accepted as a valid document?
- No. Portals validate size, format and often page dimensions — not how many bytes the content 'deserves'. A crisp 80KB text PDF is as valid as an 8MB scan of the same page.
- Does the file get uploaded anywhere to be compressed?
- No. The compression runs in your browser using your own device's processor. The PDF is never transmitted, which is why the tool works on an unreliable connection and why nothing can be retained on a server.