FileKit
All posts
·5 min read

How to Remove Pages from a PDF

Methods for deleting unwanted pages from PDF files — covering page-number input, visual page management, and important considerations for sensitive content.

When You Need to Delete Pages from a PDF

Scanned documents with blank pages. Multi-page forms where only certain pages apply to you. Reports with a cover page you don't want. A contract with draft appendices that shouldn't be in the final version. Removing unwanted pages from a PDF is one of the most common document editing tasks, and it's surprisingly easy once you know your options.

Three Methods to Remove PDF Pages

1. Browser-Based Page Deletion

FileKit's Delete Pages tool shows thumbnail previews of every page. Click to select the pages you want to remove, then download the cleaned PDF. The tool runs entirely in your browser — nothing is uploaded to a server. This is the fastest option for one-off editing, especially on a phone or tablet where desktop software isn't available.

2. macOS Preview

Open the PDF, show the sidebar (View → Thumbnails), select unwanted pages, and press Delete. Simple, built-in, but Mac-only. Be careful: Preview modifies the file on save — keep a backup if the original matters.

3. Command Line with qpdf

# Keep only pages 1-5 and 10-15 (removing 6-9)
qpdf input.pdf --pages . 1-5,10-15 -- output.pdf

Specify the pages to keep rather than the pages to remove. For complex selections, this is actually easier than listing pages to delete.

Delete vs. Split: When to Use Each

Page deletion modifies a single document by removing unwanted pages. Splitting creates new documents from selected page ranges while preserving the original. Use deletion when you're cleaning up one file. Use splitting when you need to distribute different sections to different people.

Common Scenarios

Removing Blank Pages from Scans

Duplex scanning often captures blank backs of single-sided documents. These add file size and are annoying when scrolling. Identify blanks by their plain white thumbnails and delete them in batch. After removing blanks, compress the result — the file may still reference data from deleted pages internally.

Cleaning Up Government Forms

Many government PDF forms include instruction pages, example pages, and worksheets you don't need to submit. Delete everything except the pages you've filled out to reduce confusion for the person processing your submission.

Removing a Cover Page

Auto-generated cover pages from print dialogs or document management systems often contain internal metadata you don't want to share externally. One click to select, one click to delete.

Tips for Safe Page Deletion

  • Always work on a copy. If you're using a tool that modifies the original (like Preview), duplicate the file first.
  • Verify page count afterward. Open the result and check that you removed the right pages. Off-by-one errors are common when page numbers don't match page indices.
  • Check for cross-references. If the PDF has a table of contents, bookmarks, or internal links, removing pages may break them.
  • Compress afterward. Deleted page data may linger in the file structure. A compression pass cleans it up and reduces file size.

Removing Pages from Protected PDFs

If the PDF has an owner password that restricts editing, you'll need to unlock it before you can delete pages. If the PDF has a user password (required to open), you'll need that password first. No tool can edit a PDF whose content it cannot access.