How to Reduce PDF Size on Mac: 5 Methods Compared (2026)
Complete guide to reducing PDF file size on macOS with 5 methods compared: Preview, QuantPDF, ColorSync, Automator, and Ghostscript. Includes compression benchmarks, step-by-step tutorials, and a comparison table to find the best Mac PDF compressor.
Mac users have several options for reducing PDF file size, from built-in tools to specialized apps. Here’s a complete comparison to help you choose the right method.
🧭 Quick Navigation: Find Your Solution
Depending on why you need to compress your PDF, jump to the specific guide:
By Target Size
- How to compress PDF to 2MB (Great for US Visas/Passports)
- How to compress PDF to 10MB (Perfect for Email attachments)
- How to compress PDF to 25MB (Standard limit for Job Applications)
By Use Case
- Compressing for Email (Gmail/Outlook limits)
- Compressing for Government Portals (Strict upload requirements)
- Compressing Academic Thesis (Balancing quality & size)
- Fixing Blurry Text (If your current PDF is unreadable)
Method 1: Preview (Built-in, Free)
The simplest option — Preview is already on your Mac.
How to Use
- Open your PDF in Preview
- Go to File → Export
- Click Quartz Filter dropdown
- Select Reduce File Size
- Click Save
Results
| Original Size | After Preview | Reduction |
|---|---|---|
| 50MB scan | 8MB | 84% |
| 10MB text PDF | 7MB | 30% |
| 100MB photos | 15MB | 85% |
Pros
- ✅ Free and pre-installed
- ✅ No learning curve
- ✅ Quick for single files
Cons
- ❌ No control over output size
- ❌ Often over-compresses (blurry results)
- ❌ No batch processing
- ❌ Inconsistent quality
Best For
Quick compression when quality isn’t critical.
Method 2: QuantPDF (Target-Size)
A dedicated compression app with precise size control.
How to Use
- Download from quantpdf.com
- Drop your PDF into the app
- Set your target size (e.g., 25MB)
- Click Start
- Get a file at exactly your target size
Results
| Original Size | Target | Result | Accuracy |
|---|---|---|---|
| 50MB scan | 25MB | 24.8MB | ✅ |
| 100MB scan | 10MB | 9.7MB | ✅ |
| 200MB scan | 25MB | 24.5MB | ✅ |
Pros
- ✅ Exact target size control
- ✅ Optimized for scanned documents
- ✅ 100% local processing
- ✅ Batch processing (Pro)
Cons
- ❌ Paid for full features ($19.99)
- ❌ macOS only
Best For
When you need to hit exact size limits (job portals, government forms).
Method 3: Automator (Built-in, Free)
Create automated workflows for batch compression.
How to Set Up
- Open Automator (in Applications)
- Create new Quick Action
- Set “Workflow receives” to PDF files
- Add action: Apply Quartz Filter to PDF Documents
- Select Reduce File Size
- Save as “Compress PDF”
How to Use
- Right-click any PDF
- Select Quick Actions → Compress PDF
- File is compressed in place
Pros
- ✅ Free
- ✅ Integrates with Finder
- ✅ Can process multiple files
- ✅ Customizable workflows
Cons
- ❌ Uses Preview’s compression (same limitations)
- ❌ No size control
- ❌ Setup required
Best For
Automating repetitive compression tasks.
Method 4: ColorSync Utility (Built-in, Free)
Create custom compression filters for more control.
How to Create a Custom Filter
- Open ColorSync Utility (in Applications/Utilities)
- Click Filters tab
- Click + to create new filter
- Add Image Effects → Image Compression
- Set JPEG quality (0.5-0.8 recommended)
- Add Image Effects → Image Scaling if needed
- Save with a descriptive name
How to Use
- Open PDF in Preview
- File → Export
- Select your custom filter from Quartz Filter dropdown
- Save
Pros
- ✅ Free
- ✅ More control than default Preview
- ✅ Reusable filters
- ✅ Can fine-tune quality
Cons
- ❌ Technical setup
- ❌ Still no target-size option
- ❌ Trial and error to find right settings
Best For
Users who want more control without third-party apps.
Method 5: Command Line (Ghostscript)
Maximum control for technical users.
Installation
brew install ghostscript
Basic Usage
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \
-dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH \
-sOutputFile=output.pdf input.pdf
Quality Presets
| Preset | Quality | Use Case |
|---|---|---|
| /screen | Low | Web viewing |
| /ebook | Medium | General use |
| /printer | High | Printing |
| /prepress | Highest | Professional |
Custom Settings
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 \
-dDownsampleColorImages=true \
-dColorImageResolution=150 \
-dNOPAUSE -dQUIET -dBATCH \
-sOutputFile=output.pdf input.pdf
Pros
- ✅ Free and open-source
- ✅ Maximum control
- ✅ Scriptable for automation
- ✅ Cross-platform
Cons
- ❌ Technical knowledge required
- ❌ No GUI
- ❌ No target-size option
- ❌ Complex syntax
Best For
Developers and power users who need scripting.
Comparison Table
| Method | Cost | Size Control | Quality Control | Batch | Ease of Use |
|---|---|---|---|---|---|
| Preview | Free | ❌ None | ❌ None | ❌ No | ⭐⭐⭐⭐⭐ |
| QuantPDF | $19.99 | ✅ Exact | ✅ Good | ✅ Yes | ⭐⭐⭐⭐ |
| Automator | Free | ❌ None | ❌ None | ✅ Yes | ⭐⭐⭐ |
| ColorSync | Free | ❌ None | ✅ Some | ❌ No | ⭐⭐ |
| Ghostscript | Free | ❌ None | ✅ Full | ✅ Yes | ⭐ |
Which Method Should You Use?
Use Preview if:
- You need quick, one-off compression
- Quality isn’t critical
- You don’t have specific size requirements
Use QuantPDF if:
- You need to hit exact size limits
- You’re compressing for job portals or government forms
- Privacy matters (local processing)
- You compress PDFs regularly
Use Automator if:
- You compress many files regularly
- You want right-click integration
- Preview’s quality is acceptable
Use ColorSync if:
- You want more control than Preview
- You’re willing to experiment with settings
- You don’t want to install software
Use Ghostscript if:
- You’re comfortable with command line
- You need to script compression
- You want maximum control
Tips for Best Results
For Scanned Documents
- Use grayscale mode when possible
- 200 DPI is sufficient for most uses
- Target 70-80% reduction for good quality
For Text-Based PDFs
- Compression gains are limited
- Try Preview first
- Use QuantPDF if you need specific size
For Mixed Documents
- Use moderate settings
- Verify figures and images after compression
- Keep originals until verified
Troubleshooting
Preview makes files blurry
Preview’s “Reduce File Size” is aggressive. Try:
- ColorSync with custom filter (higher quality)
- QuantPDF with larger target size
File size didn’t change much
Your PDF might be:
- Already compressed
- Text-based (limited compression potential)
- Using efficient image formats
Compression failed
- Check if PDF is password-protected
- Verify file isn’t corrupted
- Try a different method
Summary
For most Mac users:
- Quick jobs: Use Preview
- Exact sizes needed: Use QuantPDF
- Batch processing: Use Automator or QuantPDF Pro
- Maximum control: Use Ghostscript
Each method has its place. Choose based on your specific needs.
Download QuantPDF — precise PDF compression for Mac.
QuantPDF Team PDF Optimization Experts
The engineering team behind QuantPDF, dedicated to privacy-first document processing solutions for macOS.
Related Articles
Best PDF Compressor for Mac 2026: Detailed Comparison
Compare the top PDF compression tools for macOS: QuantPDF vs Adobe Acrobat vs Preview vs online tools. Find the best option for your needs.
Why Is My PDF So Big? 5 Common Causes & How to Fix It
Understanding why your PDF file size is huge (images, fonts, vector data) and how to shrink it without losing quality on Mac.
Best Local & Offline PDF Compression Tools in 2026: No Upload, No Risk
Compare the best offline PDF compressors that process files locally without cloud uploads. Includes QuantPDF, Adobe Acrobat, Preview, Ghostscript — with privacy, compliance, and performance benchmarks.
Ready to compress your PDFs?
Download QuantPDF and hit your target size with local, private processing.