How to Delete Pages from a PDF: 4 Free Methods (2026)
Remove unwanted pages from any PDF file in seconds. Four free methods compared — from instant online tools to command-line batch processing.
Why Delete Pages from a PDF?
PDFs often contain pages you don't need — blank pages from scanning, cover sheets, appendices, advertisements in downloaded documents, or confidential pages that shouldn't be shared.
Common scenarios: • Remove blank pages inserted by duplex scanning • Delete cover pages and table-of-contents pages before sharing a specific section • Remove confidential pages before distributing a report externally • Strip advertisements from downloaded PDF magazines or papers • Remove fax headers from scanned documents
Deleting unnecessary pages also reduces file size — important when the PDF needs to meet email attachment limits or portal upload requirements.
Method 1: Delete Pages Online with AuraPDF (Fastest)
The fastest way to remove pages from a PDF:
- Go to AuraPDF's Delete PDF Pages tool
- Upload your PDF file
- AuraPDF displays visual thumbnails of every page
- Click on pages you want to delete — they're highlighted in red
- Or enter page numbers/ranges (e.g., '1, 5-8, 12')
- Click 'Delete Selected Pages'
- Download your trimmed PDF
Key features: • Visual page thumbnails — see exactly what you're deleting • Multi-select — click multiple pages at once • Range input — delete pages 1-5 or even/odd pages • No signup, no watermarks, no limits
Method 2: macOS Preview (Mac Only)
Mac users have a built-in solution:
- Open the PDF in Preview
- View → Thumbnails (shows sidebar with page previews)
- Click on the page you want to delete
- Press the Delete key (or Edit → Delete)
- For multiple pages: Cmd+Click to select multiple, then Delete
- File → Save (or Export as PDF for a new file)
Note: Preview modifies the original file when you save. Use 'Export' instead of 'Save' if you want to keep the original intact.
Method 3: Chrome Browser (Any OS)
A clever workaround using Chrome's print feature:
- Open the PDF in Chrome (drag the file into a Chrome tab)
- Press Ctrl+P (or Cmd+P on Mac)
- In the 'Pages' field, enter the pages you want to KEEP
- - Example: to delete pages 3 and 7, enter '1-2, 4-6, 8-end'
- Set Destination to 'Save as PDF'
- Click Save
This works on any OS (Windows, Mac, Linux, Chromebook). The downside is you specify pages to keep rather than pages to delete — slightly less intuitive for complex selections.
Method 4: Command Line (Batch Processing)
For removing pages from multiple PDFs or automated workflows:
Using QPDF (fastest): ```bash # Keep pages 1-5 and 10-20 (effectively deleting 6-9) qpdf input.pdf --pages . 1-5,10-20 -- output.pdf ```
Using pdftk: ```bash # Remove page 3 from a 10-page document pdftk input.pdf cat 1-2 4-end output output.pdf ```
Using Python with PyPDF: ```python from pypdf import PdfReader, PdfWriter
reader = PdfReader('input.pdf') writer = PdfWriter()
pages_to_delete = {2, 4, 6} # 0-indexed
for i, page in enumerate(reader.pages): if i not in pages_to_delete: writer.add_page(page)
writer.write('output.pdf') ```
Tips for Deleting PDF Pages
1. Always keep a backup: Before deleting pages, save a copy of the original PDF. Page deletion is permanent in the output file.
2. Use Extract Pages instead for partial sharing: If you need to share just a few pages from a large PDF, Extract Pages is more efficient than deleting dozens of unwanted pages.
3. Check for bookmarks and links: Deleting pages may break internal bookmarks and hyperlinks that pointed to removed pages.
4. Compress after deleting: After removing image-heavy pages, compress the PDF to reclaim file size.
5. Delete blank pages quickly: Most scanning produces blank pages from duplex scanning. Online tools can auto-detect and remove blank pages.
Frequently Asked Questions
Can I recover deleted pages from a PDF?
Will deleting pages reduce the PDF file size?
Can I delete pages from a password-protected PDF?
How do I delete only blank pages?
Try These Tools
Delete Pages
Delete Pages from PDF Online Free — Remove Unwanted Pages Instantly
Extract Pages
Extract Pages from PDF Online Free — Save Specific Pages
Split PDF
Split PDF Online Free — Divide PDF Into Separate Files
Merge PDF
Merge PDF Online Free — Combine Multiple PDFs Into One Document
Compress PDF
Compress PDF Online Free — Reduce PDF File Size by Up to 90%
Read Next
Written by the AuraPDF Team
The AuraPDF team builds free, secure PDF tools used by thousands of people worldwide. Our guides combine hands-on expertise with technical depth to help you work with PDFs more effectively.
Learn more about us