Skip to main content
AAuraPDF
Guide7 min read

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.

AuraPDF TeamApril 3, 2026

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:

  1. Go to AuraPDF's Delete PDF Pages tool
  2. Upload your PDF file
  3. AuraPDF displays visual thumbnails of every page
  4. Click on pages you want to delete — they're highlighted in red
  5. Or enter page numbers/ranges (e.g., '1, 5-8, 12')
  6. Click 'Delete Selected Pages'
  7. 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:

  1. Open the PDF in Preview
  2. View → Thumbnails (shows sidebar with page previews)
  3. Click on the page you want to delete
  4. Press the Delete key (or Edit → Delete)
  5. For multiple pages: Cmd+Click to select multiple, then Delete
  6. 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:

  1. Open the PDF in Chrome (drag the file into a Chrome tab)
  2. Press Ctrl+P (or Cmd+P on Mac)
  3. In the 'Pages' field, enter the pages you want to KEEP
  4. - Example: to delete pages 3 and 7, enter '1-2, 4-6, 8-end'
  5. Set Destination to 'Save as PDF'
  6. 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?
Not from the output file — page deletion is permanent. Always keep a copy of the original PDF before deleting pages. If you've already saved over the original, check your recycle bin or backup system.
Will deleting pages reduce the PDF file size?
Yes. Removing image-heavy pages can significantly reduce file size. Removing text-only pages has a smaller impact since text is already compact. For maximum size reduction, compress the PDF after deleting pages.
Can I delete pages from a password-protected PDF?
You need to unlock the PDF first. Use AuraPDF's Unlock PDF tool to remove password protection, then delete pages from the unlocked version.
How do I delete only blank pages?
In AuraPDF, visually identify blank pages using the thumbnail preview and click to select them. For automated detection, use Python with PyMuPDF to scan for pages with no text or image content.

Try These Tools

Read Next

A

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