How to Remove Pages from PDF Documents
PDF Guides

How to Remove Pages from PDF Documents

Michael Foster

Michael Foster

Content Creator & Tutorial Expert

Mar 19, 2026 Apr 20, 2026 5 min
Reviewed by Emma RodriguezFact-checkedEditorial Policy

Deleting unnecessary pages from a PDF reduces file size and makes documents more focused. This guide covers every method for removing PDF pages in 2026, from quick online tools to desktop editors and command-line utilities.

Removing pages from a PDF is one of the most practical editing operations. Whether you need to delete blank pages, remove sensitive information, or trim a document to its essential content, knowing how to remove pages efficiently saves time and produces cleaner documents. This guide covers every method available in 2026.

Why Remove Pages from a PDF?

There are many reasons to delete pages from a PDF:

  • Remove blank pages: Scanned documents often include blank pages that add unnecessary bulk.
  • Delete sensitive content: Remove pages containing personal or confidential information before sharing.
  • Trim to relevant sections: Share only the pages that matter to the recipient.
  • Reduce file size: Fewer pages mean a smaller file, which is easier to email and store.
  • Fix scanning errors: Remove duplicate scans or pages that were scanned incorrectly.
  • Create excerpts: Pull a subset of pages from a larger document for a specific purpose.

Method 1: Remove Pages Online

Online tools are the fastest option for removing pages from a PDF.

Step-by-Step: Removing Pages Online

  1. Upload your PDF: Drag and drop the file into the tool.
  2. View page thumbnails: The tool displays thumbnails of all pages.
  3. Select pages to remove: Click on the pages you want to delete. Most tools highlight selected pages.
  4. Alternatively, specify page numbers: Some tools let you enter page numbers or ranges to remove (e.g., "3, 7, 10-15").
  5. Delete the pages: Click the delete or remove button.
  6. Download the result: Save the edited PDF.
  7. Verify: Open the PDF and confirm the correct pages were removed and the remaining pages are in the right order.

Tips for Online Page Removal

  • Double-check page numbers: Make sure you are deleting the right pages. It is easy to miscount, especially in long documents.
  • Use thumbnails: Visual thumbnails are more reliable than page numbers because you can see the content.
  • Keep the original: Do not overwrite the original file. Save the edited version with a new name until you verify it is correct.

Method 2: Desktop Software

Desktop tools provide more control and work offline.

Using Adobe Acrobat Pro

  1. Open the PDF in Acrobat Pro.
  2. Go to Tools > Organize Pages.
  3. Page thumbnails appear in a grid.
  4. Select the page(s) to delete:

- Click a page to select it.

- Shift-click for a range.

- Ctrl/Cmd-click for individual pages.

  1. Press the Delete key, or click the trash can icon in the toolbar.
  2. Confirm the deletion.
  3. Save the document.

Using PDFsam Basic (Free)

  1. Open PDFsam Basic and select "Delete pages" or use the "Split" tool with page ranges.
  2. Add your PDF.
  3. Specify which pages to remove or which to keep.
  4. Set the output destination.
  5. Click "Run."

Using Preview (macOS)

  1. Open the PDF in Preview.
  2. Show the thumbnail pane (View > Thumbnails).
  3. Select the page(s) you want to delete.
  4. Press the Delete key (or Edit > Delete).
  5. Save the document (File > Export as PDF to ensure changes are saved).

Method 3: Command-Line Page Removal

For automation, command-line tools are efficient.

Using qpdf

qpdf can remove pages by keeping only the pages you want:

# Keep pages 1-5 and 10-15, removing everything else
qpdf input.pdf output.pdf --pages . 1-5,10-15 --

The syntax is `--pages input_file page-range --`. The dot (`.`) refers to the same file as the input.

Using Ghostscript

Ghostscript can extract specific page ranges, effectively removing the rest:

# Keep only pages 1-10 (removing pages 11+)
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFirstPage=1 -dLastPage=10 -sOUTPUTFILE=trimmed.pdf input.pdf

For non-contiguous page removal, you may need to use qpdf or process the file in multiple steps.

Batch Removal Script

#!/bin/bash
# Remove the last page from all PDFs in the directory
for pdf in *.pdf; do
  name=$(basename "$pdf" .pdf)
  pages=$(qpdf --show-pages "$pdf" | tail -1 | awk '{print $1}')
  qpdf "$pdf" "trimmed_$name.pdf" --pages . 1-$((pages-1)) --
  echo "Removed last page from $pdf"
done

Common Removal Scenarios

Scenario 1: Remove Blank Pages

Scanned documents often have blank pages (the back side of single-sided sheets). To remove them:

  1. Open the PDF in a tool that shows thumbnails.
  2. Identify blank pages (they appear as white thumbnails).
  3. Select all blank pages and delete them.
  4. Save the cleaned document.

Scenario 2: Remove a Single Page

You need to delete page 7 from a 20-page document:

  1. Open the PDF in any page editing tool.
  2. Navigate to page 7.
  3. Select it and delete.
  4. Verify that pages 6 and 8 are now adjacent and the document flows correctly.

Scenario 3: Remove a Range of Pages

You need to delete pages 10–15 from a document:

  1. Open the PDF.
  2. Select pages 10 through 15 (shift-click in most tools).
  3. Delete them.
  4. Verify the remaining pages are in the correct order.

Tips for Safe Page Removal

Always Keep a Backup

Before removing pages, keep a copy of the original PDF. Once pages are deleted and the file is saved, they cannot be recovered unless you have the original.

Verify After Removal

After deleting pages, scroll through the entire document to confirm:

  • The right pages were removed.
  • The remaining pages are in the correct order.
  • No content was accidentally cut off.
  • The document still reads logically.

Check for Page References

If your PDF has a table of contents, index, or cross-references, removing pages may make these references incorrect. Update or remove the table of contents after deleting pages.

Consider Bookmarks

Removing pages may leave bookmarks pointing to non-existent pages. Check and update bookmarks after removal.

Conclusion

Removing pages from a PDF is a simple but important editing operation. For quick, one-time removals, online tools are the fastest option. For offline or frequent editing, desktop software like Adobe Acrobat Pro or Preview (on macOS) provides reliable page deletion. And for automation, command-line tools like qpdf handle batch processing efficiently. Always keep a backup of the original and verify the result after removing pages to ensure your document is clean and correct.

Share

About the Author

Michael Foster

Michael Foster

Content Creator & Tutorial Expert

Michael creates in-depth tutorials and guides that make complex tools accessible to everyone. He has a passion for teaching and clear communication.

5+ years creating educational content for tech products
Skills & Expertise
Technical WritingTutorial DesignUser EducationContent Strategy

Frequently Asked Questions

Can I recover deleted pages from a PDF?
Not from the edited file. Once you delete pages and save the PDF, those pages are gone. Always keep a backup of the original PDF before removing pages so you can recover them if needed.
How do I remove blank pages from a scanned PDF?
Open the PDF in a tool that shows page thumbnails, identify the blank pages (they appear as white thumbnails), select them, and delete. Some scanning software also has automatic blank page removal during the scanning process.
Will removing pages reduce the PDF file size?
Yes. Removing pages reduces the file size proportionally to the content on those pages. Removing pages with large images will reduce the size more than removing text-only pages.
Can I remove pages from a password-protected PDF?
You need to unlock the PDF with the password first, then remove pages. After editing, you can re-apply password protection if needed.

Start working smarter today

Join 500,000+ users who trust VisualDocs for their daily image and PDF workflows.