Skip to main content
Back to Blog
4 min read

How to Delete Pages from a PDF — Quick and Free

You downloaded an ebook with 12 pages of ads at the front. You scanned a 40-page document and the back of every sheet came out blank. You exported a report and found a duplicate page in the middle. The fix in every case is the same: delete the unwanted pages.

Why delete pages instead of redoing the document?

Removing pages is faster than re-creating them, and it's the right move when:

  • You don't have the source file (someone sent you a PDF, not the original Word doc)
  • You only need part of a longer report or contract
  • The PDF has blank, duplicate, or scanner-artifact pages
  • You want to share a clean version without internal pages, ads, or personal info
  • You need to trim a document to fit an upload limit (e.g., 20-page max for a job application)

Re-printing the original document just to drop a few pages is wasted effort if you can edit the PDF directly.

Free methods to delete PDF pages

Method 1: macOS Preview

  1. Open the PDF in Preview
  2. Show the sidebar (View → Thumbnails)
  3. Click a page thumbnail you want to remove
  4. Press Delete or Backspace
  5. File → Save (or File → Export as PDF)

Tip: hold ⌘ and click multiple thumbnails to delete several at once.

Method 2: Adobe Acrobat Reader (free version)

The free Acrobat Reader does not allow page deletion — that's a paid Acrobat Pro feature. Use one of the other methods unless you already have Pro.

Method 3: Microsoft Edge or any modern browser

Edge has a built-in PDF viewer but doesn't support page deletion. You'll need a separate tool.

Method 4: Command line (qpdf)

For developers and power users:

``` qpdf --pages input.pdf 1-5,8,11-end -- output.pdf ```

This keeps pages 1–5, 8, and 11 to the end. It's the inverse of deletion — you specify what to keep — but the result is the same.

Method 5: Browser-based tools

The fastest option for non-technical users on any device. Our Delete Pages tool shows every page as a thumbnail. Click the pages you want gone, hit Delete, done. Everything happens in your browser — your files are never uploaded.

Picking the right pages to delete

Visual selection (clicking thumbnails) wins over typing page numbers because:

  • You can verify what you're removing before you confirm
  • It works for any PDF — you don't need to know exact page numbers
  • Mistakes are easy to undo (just click again)
  • You can spot duplicates and blanks visually

If you have a long document and want a quick way to "keep only pages 5–10", select pages 5, 6, 7, 8, 9, 10 and use the Invert button to flip the selection — now everything except pages 5–10 is marked for deletion.

What happens to the rest of the PDF?

Deletion doesn't re-render or re-compress the remaining pages. They're copied as-is into a new PDF, which means:

  • No quality loss — text stays sharp, images stay at full resolution
  • No layout shift — fonts, formatting, and embedded objects are preserved
  • Faster than printing-to-PDF — no re-rasterization step
  • Smaller file size — removed pages free up their data immediately

Common pitfalls

  • You can't delete every page — a PDF must have at least one page. The tool blocks attempts to wipe everything.
  • Deletion changes page numbering — if your PDF has numbered pages baked into the content (e.g., "Page 5 of 30"), those numbers won't update. Consider re-adding page numbers after deletion.
  • Bookmarks and links may break — internal cross-references in academic papers or technical manuals can point to pages that no longer exist.
  • Form fields persist — if a deleted page had form fields with names referenced elsewhere, you may see warnings in some viewers.

When to extract instead of delete

Use delete when you want most of the document and need to remove a few specific pages.

Use extract when you want only a few pages and don't need the rest. Our Extract Pages tool handles that case — pick the pages you want and save them as a new PDF (or as separate files).

Both produce the same end result for some scenarios, but extract is faster for "give me just chapter 3" while delete is faster for "remove the ads at the front".

Tips for clean results

  • Sort before deleting — if you also want to reorder the remaining pages, delete first, then reorder
  • Delete from a copy — keep your original PDF untouched; work on a renamed copy
  • Re-add page numbers if the document had baked-in numbering
  • Compress the result — deleted pages free up space, but a compression pass can shrink it further
  • Re-add a watermark if the original had one and you want it on the trimmed version

Common use cases

  • Trim ebooks and reports — drop the ads, ToC, or appendix you don't need
  • Clean up scans — remove blank back-of-page pages from duplex scans
  • Redact sections — quickly remove confidential pages before sharing externally
  • Shrink for upload limits — fit a 30-page document into a 20-page application limit
  • Separate combined documents — strip the cover letter from a multi-document PDF

Related Guides