← All guides

How to Remove Pages from a PDF

pdfremoveedit

You’ve got a PDF with extra pages you don’t want — a blank page in the middle, an advertisement at the end of a downloaded article, scratch pages from a meeting notes scan, a duplicate page someone accidentally added. Adobe Acrobat (paid) is the traditional tool for this, but you don’t need it. The same operation runs in your browser.

The fastest way: split, then keep only what you want

Use the PDF Splitter. It does double duty — it splits PDFs into chunks, but it also lets you extract specific pages and discard the rest.

The flow:

  1. Open the PDF Splitter
  2. Drop in your PDF
  3. Select “Extract pages” mode (or “Keep pages”)
  4. Type the pages you want to keep (the unwanted ones get dropped)
  5. Click extract
  6. Download the result — your PDF without the removed pages

Page selection syntax:

  • 1-5 keeps pages 1 through 5
  • 1, 3, 5, 7 keeps pages 1, 3, 5, and 7 only
  • 1-3, 5, 7-10 keeps pages 1-3, 5, and 7-10 (drops page 4 and page 6)
  • 1-20 keeps pages 1-20 (drops everything from page 21 onward)

When you want to remove just one page

For a “remove page 7 from a 20-page PDF” task, the syntax is:

1-6, 8-20

This keeps pages 1 through 6 and pages 8 through 20, dropping page 7. The output is a 19-page PDF.

It’s a “keep” syntax rather than a “remove” syntax — slightly more typing, but more flexible (you can remove arbitrary pages in one operation).

When you want to remove multiple scattered pages

Say you have a 30-page PDF and want to drop pages 5, 12, and 22.

The page-keep syntax: 1-4, 6-11, 13-21, 23-30

Result: a 27-page PDF without those three pages.

Why split-and-keep instead of a dedicated “delete pages” tool

The split-and-keep approach is more powerful and avoids edge cases:

  • You see exactly which pages survive before clicking
  • Reordering doesn’t get accidentally implied (some “delete pages” tools shift things)
  • Page numbering in the source stays consistent (page 7 stays referred-to as “page 7” until you explicitly drop it)
  • Single operation even for many scattered pages

A “delete page X” interface clicked repeatedly is more error-prone — easy to lose track of which pages are still in the file as you go.

Common reasons to remove pages

Cover page or watermark page: a downloaded PDF often has a marketing or terms page you don’t want in your archive.

Blank pages from scanning: scanners sometimes pick up the back of a single-sided page if you scan a stack. The result has blank pages between the real ones.

Advertisements or filler: especially in PDFs of magazines or some online articles.

Duplicate pages: someone accidentally added the same page twice during a merge.

Sensitive content before sharing: a contract might have an internal-only cover sheet you need to drop before sending externally.

Subset for someone else: only pages 5-15 are relevant to the recipient, so trim down before sharing.

Large attachment size: dropping unnecessary pages can shrink a PDF significantly, especially if those pages had heavy embedded images.

Removing pages vs splitting into separate PDFs

The same tool handles both tasks, but the workflow differs:

Removing pages: extract the pages you want to keep, get a single output file with the removed pages gone.

Splitting into separate PDFs: split the original into multiple files, each containing a subset of pages.

If you want to “remove page 7 AND save it separately as its own PDF” — that’s two operations:

  1. Extract just page 7 (7) → save as page-7.pdf
  2. Keep everything except page 7 (1-6, 8-end) → save as main-without-page-7.pdf

The tool walks through both in succession.

What gets preserved when removing pages

The PDF-splitter approach is non-destructive for everything that survives:

Preserved:

  • All text content on kept pages
  • Images, fonts, formatting
  • Hyperlinks (within and to external URLs)
  • Bookmarks pointing to kept pages
  • OCR text layer (if present)
  • Form fields on kept pages
  • Embedded files / attachments

Adjusted:

  • Page numbering in the file: page 8 in the source is now page 7 in the output (since previous page 7 was dropped)
  • Bookmarks pointing to dropped pages: become invalid (the tool may try to remove them or point to the nearest survivor)
  • Table of contents that referred to dropped pages: outdated; you’d need to manually rebuild

For typical use (drop blank pages, drop a cover page), the page-numbering shift doesn’t matter — you’d just want the dropped pages gone.

Reordering pages while removing them

The PDF Splitter’s keep syntax lets you reorder while extracting:

3, 1, 2, 4 keeps pages 1-4 but in the order 3, 1, 2, 4. So this is also “rearrange page order” tool.

For more complex rearranging (move several pages around, swap pairs), it’s usually clearer to:

  1. Extract individual pages or short ranges into separate PDFs (using the splitter)
  2. Re-merge them in the order you want (using the PDF Merger)

Two steps, but you have full control.

Removing the last page (or first page)

Two very common cases get simpler syntax:

Remove the last page of an N-page PDF: 1-(N-1). For a 20-page PDF, keep 1-19.

Remove the first page: 2-N. For a 20-page PDF, keep 2-20.

Remove the first three pages (e.g., a cover + title + table of contents you want to drop): 4-N.

These are the most common removal patterns — there’s something at the beginning or end you don’t want.

After removing — common follow-ups

File size still too big? Run through PDF Compressor to shrink further.

Need to add new pages? Use PDF Merger to combine your edited PDF with another.

Pages now in wrong orientation? Use PDF Rotator.

Want to verify what’s in there? Re-open the output PDF in any PDF reader and page through.

What this tool can’t do

A few related operations that aren’t pure page-removal:

Removing specific content from a page (a paragraph, an image): you’d need a real PDF editor (Adobe Acrobat Pro, paid). Our tools operate at the page level, not the element level.

Removing watermarks or annotations from kept pages: tools that do this exist but require parsing PDF structure deeply; this isn’t a browser-friendly task. Page-removal keeps the page intact including any watermarks.

Removing pages from password-protected PDFs: the splitter handles password-protected PDFs as long as you have the password to open them. If you don’t have the password, no tool can help (without breaking encryption, which is illegal in most jurisdictions for protected documents you don’t own).

Privacy

The PDF Splitter runs in your browser:

  • PDF is parsed in JavaScript via pdf-lib
  • Page extraction modifies the in-memory PDF structure
  • The output PDF is generated as a browser blob

Nothing about the PDF touches a server. For PDFs with sensitive content (contracts, medical records, financial documents), the page removal is fully private.

TL;DR

  • Remove pages from a PDFPDF Splitter with “extract / keep” mode
  • Specify which pages to keep: 1-6, 8-20 keeps everything except page 7
  • For scattered removals: list all surviving pages in one go
  • Combines with reordering if you want to move pages too
  • For complex rearrangements: split into pieces, re-merge in the order you want
  • Last page only: 1-(N-1). First page only: 2-N
  • Browser-based, no upload, fully private