
How to Remove Pages from PDF Documents

Michael Foster
Content Creator & Tutorial Expert
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.
Table of Contents
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
- Upload your PDF: Drag and drop the file into the tool.
- View page thumbnails: The tool displays thumbnails of all pages.
- Select pages to remove: Click on the pages you want to delete. Most tools highlight selected pages.
- Alternatively, specify page numbers: Some tools let you enter page numbers or ranges to remove (e.g., "3, 7, 10-15").
- Delete the pages: Click the delete or remove button.
- Download the result: Save the edited PDF.
- 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
- Open the PDF in Acrobat Pro.
- Go to Tools > Organize Pages.
- Page thumbnails appear in a grid.
- Select the page(s) to delete:
- Click a page to select it.
- Shift-click for a range.
- Ctrl/Cmd-click for individual pages.
- Press the Delete key, or click the trash can icon in the toolbar.
- Confirm the deletion.
- Save the document.
Using PDFsam Basic (Free)
- Open PDFsam Basic and select "Delete pages" or use the "Split" tool with page ranges.
- Add your PDF.
- Specify which pages to remove or which to keep.
- Set the output destination.
- Click "Run."
Using Preview (macOS)
- Open the PDF in Preview.
- Show the thumbnail pane (View > Thumbnails).
- Select the page(s) you want to delete.
- Press the Delete key (or Edit > Delete).
- 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.pdfFor 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"
doneCommon Removal Scenarios
Scenario 1: Remove Blank Pages
Scanned documents often have blank pages (the back side of single-sided sheets). To remove them:
- Open the PDF in a tool that shows thumbnails.
- Identify blank pages (they appear as white thumbnails).
- Select all blank pages and delete them.
- Save the cleaned document.
Scenario 2: Remove a Single Page
You need to delete page 7 from a 20-page document:
- Open the PDF in any page editing tool.
- Navigate to page 7.
- Select it and delete.
- 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:
- Open the PDF.
- Select pages 10 through 15 (shift-click in most tools).
- Delete them.
- 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.
Sources & References
About the Author

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.
Frequently Asked Questions
Can I recover deleted pages from a PDF?
How do I remove blank pages from a scanned PDF?
Will removing pages reduce the PDF file size?
Can I remove pages from a password-protected PDF?
Start working smarter today
Join 500,000+ users who trust VisualDocs for their daily image and PDF workflows.
