PDF Compression 5 min read

How to Compress PDF for Email

Get your PDF files under 25 MB for Gmail, Outlook, and other email providers using free tools and proven techniques.

Difficulty Easy
Average Compression 60-80%
Tools Needed Free software

Understanding Email Attachment Limits

Email providers enforce strict file size limits to prevent server overload and ensure fast delivery. Here's what you're working with:

Provider Attachment Limit Alternative
Gmail 25 MB Auto-converts to Google Drive link
Outlook 25 MB OneDrive sharing available
Yahoo Mail 25 MB Manual cloud upload required
Apple Mail 25 MB Mail Drop (up to 5 GB)
Pro Tip: Always aim for under 20 MB to leave room for email headers and ensure reliable delivery across all email clients.

Quick Compression Wins

Before diving into specific tools, try these universal strategies that work regardless of your compression method:

Remove unnecessary pages

Delete blank pages, redundant sections, or appendices the recipient doesn't need.

Strip embedded fonts

If the PDF uses custom fonts, converting to system fonts can save 1-5 MB.

Remove metadata and comments

Hidden data, annotations, and form fields can add surprising bulk.

Downsample images

Reduce image resolution from 300 DPI to 150 DPI for screen viewing.

Method 1: Mac Preview (Free)

macOS includes a built-in PDF compressor that's surprisingly effective. Here's how to use it:

1

Open PDF in Preview

Right-click your PDF file and select Open With → Preview.

2

Export with Quartz Filter

Go to File → Export (not "Save As"). In the export dialog, click the Quartz Filter dropdown.

3

Select "Reduce File Size"

Choose the Reduce File Size option. This applies aggressive compression suitable for email.

File → Export → Format: PDF → Quartz Filter: Reduce File Size
4

Verify and Save

Check the file size before clicking Save. Preview will show the estimated size in the save dialog.

Expected Results:

  • Image-heavy PDFs: 70-90% reduction
  • Text-heavy PDFs: 30-50% reduction
  • Scanned documents: 60-80% reduction
Quality Note: Preview's "Reduce File Size" is very aggressive. Images may become noticeably pixelated. For better control, use Adobe Acrobat or custom Quartz filters.

Method 2: Adobe Acrobat (Paid)

Adobe Acrobat offers the most control over PDF compression with quality presets and granular settings.

1

Open in Acrobat Pro

Launch Adobe Acrobat (not Reader) and open your PDF.

2

Access Optimize PDF Tool

Go to File → Save As Other → Optimized PDF or use Tools → Optimize PDF.

3

Choose Compression Settings

In the optimization dialog, select your target:

  • Standard: Balanced quality/size (recommended for email)
  • High Quality: Minimal compression (for printing)
  • Minimum Size: Maximum compression (for web only)
4

Advanced Options (Optional)

Click Advanced Optimization for fine control:

Images Downsample to 150 DPI, JPEG quality 60-80
Fonts Unembed fonts, subset fonts over 50%
Discard Remove comments, form fields, bookmarks
5

Save and Compare

Click OK and save. Acrobat will show the original vs. compressed size before saving.

Acrobat Alternative: Don't have Acrobat Pro? Try the free 7-day trial, or use the cheaper Acrobat Standard which includes PDF optimization.

Method 3: Online Compression Tools

Browser-based tools offer convenience without installing software. Here are the most reliable options:

Smallpdf

★★★★★
  • Compression: 40-70% reduction
  • File limit: 5 GB
  • Free tier: 2 files/day
  • Quality: Excellent balance

Best for: Quick compressions with good quality retention.

URL: smallpdf.com/compress-pdf

iLovePDF

★★★★☆
  • Compression: 50-80% reduction
  • File limit: 200 MB
  • Free tier: Unlimited with limits
  • Quality: Three compression levels

Best for: Batch compression and extreme size reduction.

URL: ilovepdf.com/compress_pdf

PDF24 Tools

★★★★☆
  • Compression: 30-60% reduction
  • File limit: 100 MB
  • Free tier: Fully free, no limits
  • Quality: Conservative, preserves quality

Best for: Privacy-focused users (processes locally via desktop app option).

URL: tools.pdf24.org/en/compress-pdf
Privacy Warning: Online tools upload your PDF to their servers. Avoid using them for sensitive or confidential documents. For private files, use local desktop tools like Preview or Acrobat.

Method 4: Ghostscript (Command Line)

For power users and automation, Ghostscript offers scriptable PDF compression with complete control.

1

Install Ghostscript

Install via package manager:

# macOS (Homebrew) brew install ghostscript # Ubuntu/Debian sudo apt install ghostscript # Windows (Chocolatey) choco install ghostscript
2

Basic Compression Command

Use this command for standard email-ready compression:

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

What this does: Compresses images to 150 DPI, optimizes for screen viewing, removes redundant data.

3

Quality Presets

Adjust the -dPDFSETTINGS parameter:

Setting Use Case Image DPI Compression
/screen Low quality, smallest size 72 DPI ~90%
/ebook Email (recommended) 150 DPI ~70%
/printer High quality, larger 300 DPI ~40%
/prepress Print-ready, minimal compression 300+ DPI ~20%
4

Advanced Custom Settings

For maximum control, specify exact compression parameters:

gs -sDEVICE=pdfwrite \ -dCompatibilityLevel=1.4 \ -dDownsampleColorImages=true \ -dColorImageResolution=150 \ -dColorImageDownsampleType=/Bicubic \ -dAutoFilterColorImages=false \ -dColorImageFilter=/DCTEncode \ -dNOPAUSE -dQUIET -dBATCH \ -sOutputFile=custom.pdf \ original.pdf
Automation Tip: Save this as a shell script or batch file for one-click compression. You can also use find to batch-compress entire folders.

Before/After Comparison

Real-world compression results from different PDF types:

Marketing Brochure (Image-Heavy)

Before 48.2 MB 20 pages, high-res photos
After 6.8 MB 86% reduction

Method: Adobe Acrobat "Standard" preset

Quality: Excellent for screen, slight pixelation when zoomed 200%+

Technical Report (Text + Charts)

Before 12.4 MB 50 pages, embedded fonts
After 3.1 MB 75% reduction

Method: Ghostscript /ebook preset

Quality: Perfect text, charts retain clarity

Scanned Documents (300 DPI)

Before 89.7 MB 100 pages, color scan
After 11.2 MB 88% reduction

Method: Smallpdf online compressor

Quality: Readable at normal zoom, minor artifacts in fine print

Troubleshooting Common Issues

Problem: PDF still too large after compression

Solutions:

  • Remove unnecessary pages before compressing
  • Try a more aggressive compression tool (Ghostscript /screen or iLovePDF "Extreme")
  • Split the PDF into multiple files
  • Convert images to black & white if color isn't essential
  • Use a file-sharing service (Google Drive, Dropbox) instead of email

Problem: Compressed PDF looks terrible

Solutions:

  • Use a less aggressive preset (Ghostscript /printer instead of /ebook)
  • In Adobe Acrobat, increase JPEG quality to 80-90
  • Avoid compressing PDFs that are already optimized
  • For text-heavy PDFs, ensure text isn't being rasterized

Problem: Compression makes PDF unreadable

Solutions:

  • This usually happens with scanned documents at very low DPI
  • Use OCR (Optical Character Recognition) to convert images to text first
  • Adobe Acrobat: Tools → Enhance Scans → Recognize Text
  • Minimum recommended: 150 DPI for readable text

Problem: Fonts look different after compression

Solutions:

  • Disable font unembedding in your compression settings
  • In Ghostscript, add: -dEmbedAllFonts=true
  • Accept that some font substitution may occur for obscure fonts
  • For critical documents, flatten the PDF to images first (increases size though)

Frequently Asked Questions

What is the email attachment size limit?

Most email providers limit attachments to 25 MB. This includes Gmail, Outlook.com, Yahoo Mail, and Apple Mail. Some corporate email servers may have lower limits (10-20 MB). If your file exceeds the limit, the email will typically bounce back or fail to send.

How much can PDF compression reduce file size?

Compression effectiveness depends on PDF content:

  • Image-heavy PDFs: 60-90% reduction (most dramatic)
  • Text with images: 40-70% reduction
  • Text-only PDFs: 20-40% reduction
  • Already compressed: 0-10% reduction

A 50 MB photo-heavy PDF can often be reduced to 5-10 MB without visible quality loss for screen viewing.

Will compressing a PDF reduce quality?

It depends on the compression method:

  • Text: Usually lossless. Text remains crisp at any zoom level.
  • Vector graphics: No quality loss with proper settings.
  • Photos/images: Slight quality reduction, usually imperceptible for screen viewing. Noticeable only when zoomed beyond 150% or printed.

For documents meant for printing, use lower compression levels (Adobe "High Quality" or Ghostscript /printer).

What's the best free PDF compressor?

Depends on your platform:

  • Mac users: Preview (built-in, very effective)
  • Windows users: PDF24 Tools (free download) or iLovePDF (online)
  • Linux users: Ghostscript (command line, most powerful)
  • All platforms: Smallpdf or iLovePDF for quick online compression
Can I compress password-protected PDFs?

Yes, but you'll need to enter the password first. Most tools (including Preview and Acrobat) will prompt for the password when you open the file. After compression, you can re-apply password protection. Note that compression may remove some security features, so verify permissions after compression.

How do I compress multiple PDFs at once?

Adobe Acrobat: Use Action Wizard to create a batch compression action.

Ghostscript: Use a shell script with a loop:

for file in *.pdf; do gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook \ -dNOPAUSE -dQUIET -dBATCH \ -sOutputFile="compressed_${file}" "$file" done

Online tools: Smallpdf and iLovePDF support batch uploads (paid tiers).

Should I use online or offline compression tools?

Use online tools when:

  • File is not confidential
  • You need quick, one-time compression
  • You don't want to install software

Use offline tools (Preview, Acrobat, Ghostscript) when:

  • File contains sensitive information
  • You compress PDFs regularly
  • You need precise control over settings
  • You work with very large files (>100 MB)
What if my PDF is still too large after compression?

Try these alternatives:

  • Split the PDF: Send multiple emails with smaller chunks
  • Use cloud storage: Upload to Google Drive, Dropbox, or OneDrive and share a link
  • File transfer services: WeTransfer (free up to 2 GB) or Send Anywhere
  • Remove pages: Extract only the essential pages the recipient needs
  • Convert to images: Export critical pages as JPEGs (much smaller than PDF)