Skip to content

A scanned page can be 20 MB, and a scanned book is a problem

Scans are images pretending to be documents. How to find the large ones and reduce them without losing readability.

5 min read

A text PDF of fifty pages is a couple of megabytes. A scanned PDF of fifty pages can be several hundred, because every page is a photograph. On a Mac used for paperwork, scans are frequently the largest category of documents by a wide margin.

Find them

find ~/Documents ~/Desktop ~/Downloads -name '*.pdf' -size +10M \
  -exec ls -lh {} + 2>/dev/null | sort -k5 -h | tail -20

Anything over about 10 MB is worth looking at. Open one and check whether you can select the text: if you cannot, it is an image and can almost certainly be made much smaller.

Reducing size without ruining it

  1. Open the PDF in Preview.
  2. File, Export, and choose the Reduce File Size Quartz filter.
  3. Compare the result before replacing the original, since the built in filter is aggressive.
  4. For scans you need to keep readable, scan again at 200 to 300 dpi in greyscale rather than colour.

The scanner settings matter more than any compression afterwards. Colour at 600 dpi for a page of black text produces a file ten times larger than greyscale at 300 dpi with no useful difference.

Text recognition changes the arithmetic

Running text recognition on a scan adds a searchable text layer without adding much size, and it means you can find the document later. It does not shrink the images, but it does make a smaller, greyscale scan much more useful, which changes what you are willing to compress.

Where scans accumulate

  • Downloads, from every statement and form you ever saved.
  • A scans folder the scanner software created and points at by default.
  • Notes and Files, from phone scans that sync to the Mac.
  • Mail, as attachments that are then copied into the downloads folder as well.

That last one is worth checking on the same pass, since Mail keeps its own copy of every attachment you opened, which means a large scan can exist three times on one Mac.

Common questions

Why are my scanned PDFs so large?

Because each page is stored as an image rather than as text. Colour at a high resolution multiplies that further, so a scanned page can be twenty times the size of the same page as text.

How do I reduce PDF size on a Mac?

Open it in Preview, choose File, Export, and select the Reduce File Size Quartz filter. Check the result before replacing the original, since the filter is aggressive with images.

What scanner settings keep files small?

Greyscale at 200 to 300 dpi for text documents. Colour at 600 dpi produces files many times larger with no benefit for a page of black text.

Does text recognition make a scan bigger?

Only marginally. It adds a searchable text layer over the images, which makes a smaller greyscale scan far more useful and is worth doing before compressing.

Read next