Compress PDF Free — Reduce File Size Without Losing Quality
Published May 5, 2026
Large PDF files are a pain. They take forever to upload, clog email inboxes, slow down websites, and waste storage space. But compressing a PDF does not mean you have to accept blurry text and pixelated images. With the right approach, you can cut file size by 50 to 90 percent while keeping the document looking sharp.
This guide covers every method worth knowing — from quick online compressors to desktop software and command-line tools — so you can pick the right one for your situation.
Why Do PDFs Get So Large?
Understanding what bloats a PDF helps you compress it effectively. The main culprits are:
- Embedded images: High-resolution photos and scanned pages are the biggest offenders. A single scanned page can be 1-2 MB.
- Embedded fonts: PDFs often embed full font sets to ensure consistent display across devices. A single font can add hundreds of kilobytes.
- Unused objects: PDF editors often leave behind deleted content, unused fonts, and redundant data structures.
- No compression: Some PDF creators do not apply any compression to images or content streams.
- Metadata and thumbnails: Document properties, embedded thumbnails, and revision history add unnecessary bulk.
Method 1: Compress PDF Online for Free
Online compression is the fastest option. Upload your file, pick a compression level, and download the result. Most tools offer multiple quality settings so you can balance file size against visual fidelity.
Steps:
- Open a browser-based PDF compressor
- Upload your PDF file (drag and drop or browse)
- Choose a compression level — most tools offer low, medium, and high compression
- Click compress and wait a few seconds
- Download the compressed file
Which level to pick: For documents that are mostly text, high compression works great. For documents with detailed images, charts, or diagrams, stick with medium compression to preserve quality. If the PDF contains photographs where detail matters, use low compression.
Bulk compression: Many online tools let you upload multiple PDFs at once. This is handy when you need to compress an entire folder of documents.
Method 2: Compress PDF with Desktop Software
Adobe Acrobat Pro
- Open the PDF in Adobe Acrobat Pro
- Go to File > Save as Other > Reduced Size PDF
- Select the compatibility version (choosing a newer version typically yields smaller files)
- Save the compressed version
For more control, use File > Save as Other > Optimized PDF. This opens a detailed panel where you can individually control image downsampling, font embedding, transparency flattening, and object cleanup.
Preview (macOS)
- Open the PDF in Preview
- Go to File > Export
- Choose Reduce File Size from the Quartz Filter dropdown
- Save the exported file
This works well for simple documents but can over-compress images. For better results on image-heavy PDFs, consider using the command-line method below.
LibreOffice
If your PDF was created from a document, you can open it in LibreOffice, then re-export as PDF with lower image quality settings. Go to File > Export as PDF and adjust the image quality and resolution in the export dialog.
Method 3: Compress PDF with Command Line
Ghostscript (Most Powerful)
Ghostscript gives you granular control over every compression parameter. It is free, runs on all platforms, and consistently produces smaller files than most GUI tools.
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \ -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH \ -sOutputFile=output.pdf input.pdf
The -dPDFSETTINGS flag controls the compression level. Here are the options, from smallest to highest quality:
/screen— 72 DPI, smallest file, lowest quality (good for screen-only reading)/ebook— 150 DPI, good balance of size and quality/printer— 300 DPI, high quality, moderate compression/prepress— 300 DPI, maximum quality, minimal compression
qpdf (Fast Linearization)
qpdf --linearize --compress-streams=yes input.pdf output.pdf
qpdf optimizes PDF structure for fast web viewing (linearization). It does not compress images but restructures the file so the first page loads before the entire file downloads. Useful for PDFs served on websites.
How Much Can You Compress?
The compression ratio depends entirely on the content:
- Text-heavy documents: 70-90% reduction is common. A 5 MB document can shrink to under 500 KB.
- Scanned documents: 50-80% reduction. Converting from uncompressed TIFF-based scans to JPEG compression makes a huge difference.
- Image-heavy documents: 40-70% reduction. The more photographs, the less room for compression without visible quality loss.
- Already-optimized PDFs: 5-20% reduction. If the file has already been compressed, further gains are minimal.
Tips for Maximum Compression Without Quality Loss
1. Downsample Images to the Right Resolution
Most PDFs contain images at much higher resolution than needed. For on-screen viewing, 150 DPI is sufficient. For printing, 300 DPI is standard. Anything higher is wasted space unless you are doing professional print work.
2. Remove Unused Fonts and Objects
PDF editing often leaves behind fonts, images, and other objects that are no longer referenced. Tools like Adobe Acrobat's PDF Optimizer or Ghostscript can clean these up automatically.
3. Convert to Grayscale When Color Is Not Needed
If your document does not require color (contracts, forms, text documents), converting to grayscale can cut file size significantly. Color images use three channels (RGB), while grayscale uses one — that is a theoretical 3x savings on image data.
4. Subset Font Embedding
Instead of embedding entire font files, subsetting includes only the characters actually used in the document. If your PDF uses a font for just a heading, subsetting might embed 50 characters instead of thousands.
5. Strip Metadata
Document metadata — author info, creation dates, edit history, embedded thumbnails — adds up. Removing it saves space and improves privacy at the same time.
Compress PDF on Mobile
Need to compress a PDF on your phone? Both iOS and Android have options:
- iOS: Use the Files app to share the PDF to a compression shortcut, or use Safari to access an online compressor.
- Android: Google Drive's built-in scan feature produces reasonably compressed PDFs. For existing files, use Chrome to access an online tool.
- Both: Online compression tools work great on mobile browsers. Upload from your file manager, compress, and save back.
When Not to Compress
Compression is not always the right move. Avoid compressing PDFs that:
- Contain legal documents that must be preserved in original quality
- Are intended for high-resolution professional printing
- Already have small file sizes (under 500 KB — the gain is negligible)
- Include interactive form fields that might break during compression
- Are part of an archival or records retention system with quality requirements
Frequently Asked Questions
Does compressing a PDF reduce quality?
It can, but it depends on the settings. Modern compression tools use smart algorithms that prioritize text clarity while reducing image data. At moderate compression levels, most people cannot tell the difference. At high compression, images may show artifacts but text remains readable.
How do I compress a PDF to a specific size?
Most online compressors show you the output file size before downloading. If you need an exact target (like under 1 MB for email), start with medium compression and increase if needed. Ghostscript gives you the most control for hitting specific targets.
Is it free to compress PDFs?
Yes. There are excellent free options at every level — online tools, desktop software like LibreOffice, and command-line utilities like Ghostscript. Paid tools like Adobe Acrobat Pro offer more control but are not necessary for most compression tasks.
Key Takeaways
- Images are usually the main cause of large PDF files
- Online compressors handle 90% of use cases quickly and for free
- Ghostscript offers the best compression ratios with fine-grained control
- Match compression level to your use case: screen reading needs less than printing
- Always check the compressed output before distributing
- Clean up unused fonts, objects, and metadata for extra savings