# How to Reduce PDF Size on Mac (5 Free Methods, No Quality Loss)

URL: https://pdfflare.com/blog/reduce-pdf-size-on-mac
Published: May 6, 2026
Reading time: 10 min read

> Reduce PDF size on Mac with 5 free methods — Preview, PDFFlare's Compress PDF, ColorSync, Acrobat, Ghostscript. Pick the right one for your use case.

---

You attached a 35 MB PDF to an email and Gmail rejected it. Or you tried to upload an application to a portal with a 5 MB limit. Or you're trying to fit a year of invoices on a USB drive that's nearly full. Whatever the trigger, the fix is the same: reduce PDF size on Mac without ruining quality. macOS has more tools for this than most people know — five separate paths, each suited to a different use case.

In this guide you'll learn how to reduce PDF size on Mac five different ways, from Preview's built-in Quartz filter to [PDFFlare's Compress PDF tool](https://pdfflare.com/tools/pdf/compress-pdf) (the cleanest browser-based option) to Ghostscript on the command line. Use this guide as a compress pdf mac decision tree: pick the right method based on file contents, quality tolerance, and how often you do this.

## Why PDFs Get Big in the First Place

Three culprits account for almost every oversized PDF:

- **Embedded high-res images**— phone cameras shoot at 12 MP; that's 4-8 MB per image. A 10-page PDF with one full-page photo per page is 40-80 MB before any text.
- **Embedded fonts** — fully embedded font files can add 200-500 KB per font. A document with 8 fonts (which Microsoft Word does by default) carries 2-4 MB of font data.
- **Uncompressed scanned content** — scans at 300+ DPI are huge. A 20-page scanned contract can easily hit 50-100 MB if the scanner saved each page as a full-resolution TIFF.

Compression works by reducing image resolution, switching to JPEG/JPEG 2000 from raw bitmap, subsetting fonts (only embedding glyphs actually used), and dropping unnecessary metadata. The trick is balancing how aggressive you go against how the result looks at normal viewing zoom.

## Method 1: Preview's Quartz Filter (Built In, Free)

Every Mac ships with this and most users don't know about it.

1. Open the PDF in Preview.
2. File → Export → Quartz Filter dropdown → _Reduce File Size_.
3. Save with a new filename.

Quick and free — usually shrinks files 50-80%. The downside: the default filter is aggressive and can blur images noticeably. A 10 MB PDF often comes out as 1-2 MB but with visibly soft images. Best for documents where file size matters more than image quality (drafts, internal forms, attachments under tight email limits).

## Method 2: PDFFlare's Compress PDF (Browser, No Install)

The cleanest option when you don't want to install anything and you want quality control.

1. Open [PDFFlare's Compress PDF](https://pdfflare.com/tools/pdf/compress-pdf) in any browser.
2. Drag your PDF into the upload area.
3. Pick a quality preset: **Smallest** (max compression, screen-only quality), **Balanced** (default; usually cuts size 60-80% with imperceptible quality loss), or **High Quality** (mild compression for print-bound files).
4. Download the compressed copy.

The PDF is processed in PDFFlare's sandboxed Cloud Run worker (Ghostscript backend) — same engine the professional command-line tools use, with three explicit quality tiers so you don't get surprise blurs. Files up to 100 MB process in 5-15 seconds. The output is byte-identical to running Ghostscript locally with the same settings.

## Method 3: Compress in Adobe Acrobat (Paid)

Acrobat Pro's File → Save As Other → Reduced Size PDF gives you the most fine-grained control: target version (which determines what compression algorithms are valid), per-image-type quality tiers, font subsetting rules. Best when you have a recurring archival workflow and need to certify exact compression behavior. The cost (~$25/month) makes it overkill for one-off compression; most users get the same practical result from Method 2.

## Method 4: ColorSync Utility Quartz Filters (Advanced)

The hidden power-user option. The default “Reduce File Size” Quartz filter from Method 1 is aggressive; you can build a custom filter that's gentler.

1. Open _ColorSync Utility_ (Spotlight: ColorSync) → Filters tab.
2. Duplicate the “Reduce File Size” filter, then edit the copy: bump _Image Sampling_ Maximum to 150-200 ppi (default is 100), and bump _Image Compression_ Quality from Low to Medium.
3. Save the new filter; it now appears in Preview's Quartz Filter dropdown alongside the default.

Result: less aggressive compression, better-looking output, but smaller savings (typically 30-50% reduction instead of 70-80%). Best for documents going to print where you want some compression without visible quality drops.

## Method 5: Ghostscript on the Command Line

The maximum-control path for engineers who already have Homebrew. Install with `brew install ghostscript`, then:

```
`gs -sDEVICE=pdfwrite \
   -dCompatibilityLevel=1.4 \
   -dPDFSETTINGS=/ebook \
   -dNOPAUSE -dQUIET -dBATCH \
   -sOutputFile=output.pdf input.pdf`
```

The `PDFSETTINGS` flag is the killer: pick `/screen` (smallest, 72 DPI), `/ebook` (balanced, 150 DPI), `/printer` (300 DPI), or `/prepress` (lossless-ish). PDFFlare's Compress PDF tool is literally a wrapper around this command — same engine, but in a browser, with explicit quality presets and no install required.

## How to Reduce PDF Size on Mac for Different Use Cases

### How to reduce PDF size on Mac without losing image quality

The single biggest quality lever is the image-resampling DPI. Preview's default Quartz filter drops images to 72 DPI (screen-only); a custom Quartz filter at 150-200 DPI keeps images sharp at normal viewing zoom. PDFFlare's High Quality preset and Ghostscript's `/printer` setting both target 300 DPI for print-bound files. Pick by destination: screen-only is fine for email-bound copies; 300 DPI for documents that might be printed.

### How to compress a PDF on Mac for email attachment limits

Gmail caps attachments at 25 MB; iCloud Mail at 20 MB; Outlook at 20 MB. If your PDF is over the cap, drop into [PDFFlare's Compress PDF](https://pdfflare.com/tools/pdf/compress-pdf) with the Smallest preset (typically 70-90% reduction). For chunky scans where Smallest still doesn't fit, run [Split PDF](https://pdfflare.com/tools/pdf/split-pdf) to break into two emails — sometimes that's the right answer.

### How to compress a scanned PDF on Mac (OCR first)

Scanned PDFs are usually big because each page is a high-res bitmap. Compressing aggressively makes text blocky and unreadable. The two-step fix: (1) run [OCR PDF](https://pdfflare.com/tools/pdf/ocr-pdf) first to add a real text layer (often re-renders pages at lower DPI in the process); (2) then compress with Balanced or High Quality preset. Result: smaller AND searchable, instead of smaller but unreadable.

## Which Method Should You Use?

- **One-off, urgent (need to send NOW):** Method 2 — PDFFlare's Compress PDF. Browser, 5-second turnaround.
- **One-off, draft quality is fine:** Method 1 — Preview's default filter. Free, built-in.
- **Print-bound, want quality control:** Method 4 — custom Quartz filter, or Method 2's High Quality preset.
- **Doing this 10x a day:**Method 5 — Ghostscript with a shell alias. Once it's set up, it's the fastest.
- **Already pay for Acrobat anyway:** Method 3.

## Common Mistakes

- **Compressing twice.** Each pass through a lossy compressor degrades quality. If your file is already compressed (under 5 MB and looks fine), compressing again rarely helps and often hurts.
- **Compressing scanned text.** Scanned documents hit aggressive image compression hardest — text becomes blocky and OCR fails. For scanned PDFs, run [OCR PDF](https://pdfflare.com/tools/pdf/ocr-pdf) FIRST (creates a searchable text layer, often shrinks file via re-rendering), THEN compress lightly.
- **Aggressive presets on photographic content.** Photo-heavy PDFs (event programs, photo albums) compress poorly with Smallest preset. Use Balanced for visible quality preservation.

## Privacy: Files Don't Have to Leave Your Mac

Methods 1, 4, and 5 run entirely on your Mac — no upload. Method 2 (PDFFlare's Compress PDF) is the only one that uploads to a server (PDFFlare's sandboxed Cloud Run worker), but the file is processed in memory, never written to disk, and deleted from the worker's ephemeral filesystem the moment the response returns. For maximum privacy with sensitive documents, use Method 1 or Method 4.

## Related Tools

- [Compress PDF](https://pdfflare.com/tools/pdf/compress-pdf) — Method 2 above. Three quality presets, browser-based, no Mac-specific install.
- [OCR PDF](https://pdfflare.com/tools/pdf/ocr-pdf) — run before compression on scanned documents to avoid blocky text.
- [Merge PDF](https://pdfflare.com/tools/pdf/merge-pdf) — combine then compress is sometimes more efficient than compress-each-file individually.
- [Split PDF](https://pdfflare.com/tools/pdf/split-pdf) — sometimes the right answer to a too-large PDF is splitting into smaller files instead of compressing.

## Wrapping Up

Reduce PDF size mac is a solved problem with five tools built into every Mac (Preview, ColorSync, Ghostscript) plus PDFFlare's browser-based [Compress PDF](https://pdfflare.com/tools/pdf/compress-pdf) for the no-install path. Pick by use case, not by habit: one-off urgent → PDFFlare; recurring batch → Ghostscript; quality-critical print → custom Quartz filter.

---

## Frequently asked questions

**Q: What's the easiest way to reduce PDF size on Mac for free?**

A: Two options tied for easiest: (1) macOS Preview's built-in Quartz filter — File → Export → Quartz Filter dropdown → Reduce File Size. Free, zero install, but the default filter is aggressive and can blur images noticeably. (2) PDFFlare's Compress PDF — drag the file into the browser, pick the Balanced preset, get the compressed copy back in 5 seconds. Browser-based, no install, three explicit quality tiers so no surprise blurs. Both work without an Adobe subscription.

**Q: How can I reduce PDF size on Mac without losing quality?**

A: Two paths. (1) Build a custom Quartz filter in ColorSync Utility — duplicate the 'Reduce File Size' filter, bump Image Sampling to 150-200 ppi and Image Compression Quality to Medium. The new filter shows up in Preview's export dialog and gives gentler compression than the default. (2) Use PDFFlare's Compress PDF with the High Quality preset — mild compression suitable for print-bound files, typically 30-40% reduction with imperceptible quality loss. For photo-heavy PDFs, High Quality is the right choice over Smallest.

**Q: Why is my compressed PDF still huge?**

A: Three common causes: (1) the original PDF is mostly scanned images (each page is a high-res bitmap) — running OCR PDF first creates a text layer and often reduces file size dramatically. (2) Embedded fonts that can't be subsetted because the PDF includes glyphs from many writing systems. (3) Already-compressed content — compressing twice rarely helps and often hurts. If a PDF is already under 5 MB, additional compression usually isn't worth the quality cost.

**Q: Is there a way to compress a PDF on Mac via Terminal?**

A: Yes — install Ghostscript via Homebrew (brew install ghostscript), then run: gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf. The PDFSETTINGS flag picks the quality tier: /screen (smallest, 72 DPI), /ebook (balanced, 150 DPI), /printer (300 DPI), /prepress (lossless-ish). PDFFlare's Compress PDF is literally a wrapper around this command — same engine, but in a browser with explicit quality presets.

**Q: Does compressing a PDF on Mac upload my file anywhere?**

A: Preview's Quartz filter, custom ColorSync filters, and Ghostscript run entirely on your Mac — no upload. PDFFlare's Compress PDF uploads to a sandboxed Cloud Run worker that processes the file in memory, never writes it to disk, and deletes the file the moment the response returns. For maximum-privacy compression of sensitive documents, stick with the on-device methods (Preview, custom Quartz filter, or Ghostscript).

---

## About PDFFlare

PDFFlare is a free collection of online tools for working with PDFs, images, text, JSON, and developer utilities. All tools run client-side in your browser — no signup, no upload to our servers, no rate limits.

For the full site index, see https://pdfflare.com/llms.txt.
For the complete content dump in one file, see https://pdfflare.com/llms-full.txt.