How-to

How to Reduce PDF File Size Without Losing Quality: 6 Ways

We've all been there: you attach a PDF to an email and get back "the file is too large." The good news is that you can almost always shrink that document several times over in about a minute — and your reader won't notice the difference. Let's unpack why PDFs get so heavy and which compression methods genuinely work.

A person carrying a huge stack of paper documents — what a 'heavy' PDF really looks like
A "heavy" PDF is almost always a stack of images crammed into one file. Photo: Pexels

Why PDFs get so big

Before you compress anything, it helps to know what exactly makes the file heavy. And here's the big secret: nine times out of ten the culprit is the images inside the document, not the text.

That's because text in a PDF takes up laughably little space and, on top of that, is already losslessly compressed. An entire book of plain text fits comfortably in a couple of hundred kilobytes. A single photo from a smartphone, on the other hand, weighs 4–8 MB — drop a dozen of those into a report and the file balloons to tens of megabytes in an instant.

The key idea

Shrinking a PDF almost always means shrinking the images inside it. Leave the text and vector graphics alone: they weigh next to nothing and compress losslessly anyway.

Beyond images, a few other things quietly pile up inside the file:

  • Embedded fonts. To make the document look identical on every computer, a PDF carries its fonts with it. Each added font is another 400–600 KB, and a file can hold several.
  • Metadata and hidden data. Comments, revision history, thumbnails, invisible layers, form data — all of it is space the reader never needs.
  • "Heavy baggage" from editors. When exporting from Photoshop or Illustrator, a PDF sometimes keeps the full editable source of an image "just in case." That doubles the weight for nothing.
  • Scans. A scanned page isn't text — it's a high-resolution photograph of a page. The heaviest kind of PDF there is.
A person reviewing a printed report with tables next to a laptop
Tables and text are nearly weightless. The weight comes from embedded images and scans. Photo: Pexels

Way 1: online compression in a minute

If you need to send the file right now and have no time to fiddle with settings, this is your option. An online PDF compressor does all the dirty work for you: it lowers the resolution of the images, recompresses them and throws out the clutter. All you do is upload the file and download the result.

1

Upload the PDF

Drag the file into your browser — nothing to install.

2

Run the compression

The service picks a sensible quality-to-size balance for on-screen reading.

3

Download the result

Check that the text and images read clearly, then send it.

A document with photos usually slims down 3–10 times. That's almost always enough to fit under the email attachment limit — for most providers that's 20–25 MB.

Tip

If you don't just need to shrink the PDF but also to edit it, it's sometimes smarter to convert the PDF to Word, fix the text and rebuild the document. The result is often both lighter and easier to work with than the original.

Way 2: image compression and downsampling

Since images carry the weight, that's where we strike first. Two techniques do the job here, and they work best together.

Downsampling (lowering resolution). Picture this: a photo in the document is stored at 300 ppi — print-shop quality. But an email or a slide deck is read on screen, where even 150 ppi looks perfect. The extra pixels are simply discarded, and the image's weight drops several times over. To the eye, on a monitor, there's barely any difference.

Re-encoding to JPEG. Photos inside a PDF are best stored as JPEG at a reasonable quality. That trims the weight even further while keeping the picture perfectly fine for viewing.

72ppi — "screen" preset, max compression
150ppi — sweet spot for reading
300ppi — only needed for print

Which resolution should you pick? Base it on how the document will be viewed:

Where the PDF goesImage resolutionResult
Phone / on-screen viewing72–100 ppiSmallest size
Email, report, slide deck150 ppiBest balance
Printing on paper200–300 ppiNoticeably heavier

Don't recompress in circles

JPEG and downsampling are lossy. Every fresh pass over the same file eats a little more quality: artifacts creep in, text on scans goes blurry. Compress the original once with the right settings — not an already-compressed version again.

Way 3: strip fonts, metadata and duplicates

Once the images are compressed, you can claw back a bit more by trimming the "ballast." Individually these tricks give less than working on images, but together they can sometimes shave off a meaningful share of the weight.

  • Font subsetting. Instead of carrying an entire typeface, the file keeps only the characters actually used. Thousands of unused glyphs go in the bin.
  • Cleaning metadata and hidden data. In Acrobat this is "Remove Hidden Information" and "Sanitize Document" — they sweep out comments, history, thumbnails and invisible layers.
  • Removing duplicates. If the same logo repeats on every page, an optimizer can store it once and reference it — instead of a hundred copies.
  • Skip the "source data." When exporting from graphics editors, uncheck "Preserve Photoshop/Illustrator editing capabilities" — otherwise the PDF drags a full copy of the source inside it.
Text in a PDF is nearly weightless. The battle for size is always fought against images, metadata and embedded fonts.

Way 4: Acrobat and Preview on macOS

If you'd rather stay in a familiar app, the two most popular ones have built-in compression — no extra downloads required.

Adobe Acrobat (Windows and Mac). Open the document and choose File → Save As Other → Reduced Size PDF, or the Optimize PDF tool. The first option compresses in one click; the second gives fine control — you can set a target image resolution, drop fonts and metadata, and see exactly what's taking up space.

Preview on macOS. Free and built into the system. Open the PDF, choose File → Export, and from the Quartz Filter dropdown pick Reduce File Size. The downside: the default filter sometimes compresses too aggressively and softens images, so it's worth eyeballing the result.

A printed document marked up with edits next to a laptop on a desk
Acrobat and Preview compress in a couple of clicks — handy when the app is already open. Photo: Pexels

Way 5: Ghostscript — one command

For anyone who compresses PDFs regularly or in batches, there's a free tool called Ghostscript. It's a command line, but don't let that scare you: the whole job comes down to a single line, where the key is choosing a quality preset via the -dPDFSETTINGS parameter.

PresetImage resolutionBest for
/screen72 ppiSmallest size, on-screen viewing
/ebook150 ppiQuality-to-weight balance — best pick
/printer300 ppiPrinting on an office printer
/prepress300 ppiPrint shop, maximum quality

The basic command looks like this (swap in your own file names):

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

How much does it actually do? On a real benchmark — a 12-page, image-heavy document with an 8.2 MB original:

−86%/screen → 1.1 MB
−71%/ebook → 2.4 MB
−45%/printer → 4.5 MB

Want to push it further? If the document can go black-and-white (a contract with scans, say), converting the images to grayscale buys extra savings: dropping from color to gray cuts the images' own weight by roughly two thirds.

Need to edit the PDF, not just shrink it?

The FormatZ converter turns a PDF into an editable Word file in a couple of seconds — right in your browser, with no install and no sign-up. After editing, the document often ends up both lighter and easier to use.

Convert PDF to Word

Way 6: the special case of scans and photos

Scanned PDFs are a pain of their own. Every page is stored as a full photograph, so a ten-page scanned document easily weighs tens of megabytes. These call for their own tricks:

  • Drop the color. A text document doesn't need color. Converting scans to black-and-white or grayscale slims the file dramatically — it's the biggest single saving for scans.
  • Lower the resolution to 150–200 ppi. That's plenty for reading text, and the weight falls several times over.
  • Run OCR. Text recognition (OCR) can sometimes shrink the file, but more importantly it makes the text in a scan searchable and copyable — no more retyping by hand.

An OCR bonus

After recognition you can search a scanned contract with Ctrl+F and copy paragraphs out of it. That convenience is often worth more than the megabytes you saved.

When to rebuild instead + checklist

Sometimes compression isn't the best path. If the PDF was born from a Word document or a slide deck and you still have the source, it's often simpler to rebuild the file from scratch: place the images at the right (rather than excessive) resolution and export with the correct settings. That way you avoid double compression and get a clean, light result.

A final checklist for shrinking any PDF deliberately:

  • ✅ Decide what you're compressing for: screen (150 ppi) or print (300 ppi).
  • ✅ Hit the images first — that's 90% of the weight. Downsampling + JPEG.
  • ✅ Turn scans to black-and-white and run them through OCR.
  • ✅ Trim the rest: font subsetting, metadata cleanup, duplicate removal.
  • ✅ Don't recompress the same file several times in a row.
  • ✅ Leave text and vectors alone — they're weightless.
  • ✅ Open the result, check readability, then send.

And if it turns out the document is easier to edit than to compress, the all formats page has the conversion you need — from PDF to Word to PDF to JPG and back again with JPG to PDF.

Nine times out of ten the culprit is the images inside the document. A single photo from a smartphone weighs 4–8 MB, and a scanned page is essentially a high-resolution picture too. Text in a PDF weighs almost nothing and is already compressed, so the fight for size is really a fight against images, metadata and embedded fonts.
The fastest route is online compression: upload the file to a PDF compressor and the service downsamples the images and strips the clutter for you. A document with photos usually shrinks 3–10 times, which is normally enough to fit under the attachment limit (typically 20–25 MB).
It depends on the settings. Downsampling images to 150 ppi for on-screen reading is almost invisible, while a "screen" preset (72 ppi) makes photos look soft in print. Text and vector graphics are untouched — they compress losslessly. The golden rule: never recompress the same file over and over.
It means lowering the resolution of embedded images. If a picture is stored at 300 ppi but the document is read on screen anyway, the extra pixels can be discarded by shrinking it to, say, 150 ppi. The difference is barely visible, but the image's weight drops several times over — this is the single biggest lever for shrinking a PDF.
Scans weigh the most because each page is a photograph. Convert them to black-and-white or grayscale, lower the resolution to 150–200 ppi, and run OCR (text recognition). That both slims the file and makes the text searchable and copyable.