How to delete pages from a PDF

Updated 2026-08-08 · 5 min read

Short answer: Open the PDF in a page editor, select the thumbnails of the pages you want gone or type a range such as 2,5,11-13, then delete and download. Deleting pages from a copy is safe: the original file on your disk is unchanged until you replace it yourself.

Most PDFs arrive with pages nobody wants. A fax cover sheet, a blank verso from a duplex scan, two pages of advertising bound into a magazine article, a 30-page terms appendix on a 4-page invoice. Removing them makes the file smaller, cheaper to print and quicker to read.

Unwanted pagesWhere they come fromHow to spot them
Blank backsDuplex scanning a single-sided documentEvery even page, and they are the smallest pages in the file
Cover and fax sheetsCorporate mail systems and scannersPage 1, and sometimes the last page
Advertising insertsMagazine and journal PDFsFull-bleed colour pages between article pages
Terms and conditionsInvoices, contracts, quotationsA long uniform block at the end
Duplicate pagesA double feed in the scannerTwo adjacent thumbnails that look identical
Draft or internal notesA report shared before reviewWatermarked or headed differently

What people delete, and how to find it.

Deleting pages

  1. Open the file Go to delete pages and drop the PDF in. Thumbnails appear with their page numbers.
  2. Select what goes Click the pages to mark them for removal, or type a range such as 2,5,11-13. Shift-click selects a run; Ctrl-click (⌘-click on macOS) adds scattered pages.
  3. Look at the preview count The tool should show the resulting page count. Removing 6 pages from a 48-page file must leave 42. If it does not, your selection is not what you think it is.
  4. Apply and download A new file is written. Your original is untouched on disk.
  5. Spot-check the seams Open the result and look at the pages either side of each deletion. That is where a mis-selected page shows up immediately.

Remove pages from a PDF in your browser, with no upload and no account.

Finding the blank pages

Scanned blank pages are almost never blank. Dust on the platen, show-through from the printed side, and paper texture all leave marks, so an automatic "remove blank pages" filter that tests for pure white will skip most of them. Two better approaches:

Tip: Before deleting anything from a scan, confirm the blanks really are blank. A faint handwritten note or a rubber stamp on the reverse of one page is exactly the thing an automatic filter throws away.

Other ways to do it

PlatformMethodNotes
macOSPreview → ⌥⌘2 for thumbnails → select → Delete keyThen File → Export as PDF for a clean copy
WindowsNo built-in optionEdge can view and annotate but not delete pages
Any browserA page editor that runs locallyWorks identically on Windows, Linux and ChromeOS
Adobe AcrobatOrganize Pages → select → DeleteAlso has a Delete Blank Pages action
Command lineqpdf in.pdf --pages . 1-4,7-z -- out.pdfNote the inversion: you list what to keep

The qpdf idiom is worth internalising because it is the same idea as extracting: rather than naming the pages to remove, you name everything else. 1-4,7-z keeps pages 1 through 4 and 7 through the end, which deletes pages 5 and 6. The letter z means the last page.

What breaks when a page disappears

Deleting a page is not redacting it

This one matters. PDF supports incremental updates: an editor can append changes to the end of a file rather than rewriting it, which is fast and preserves the ability to undo. The consequence is that a "deleted" page can still exist as an orphaned object inside the file, invisible in every viewer but recoverable with a text editor or a forensic tool.

If the pages you removed were confidential, that is not good enough. Use a tool that fully rewrites the document rather than appending an update, then flatten it and remove the metadata, which can otherwise retain the original page count and modification history.

Watch out: The same applies to content you covered with a black rectangle. Drawing a box over text hides it visually and leaves the text underneath fully selectable. Deleting the page removes it properly; covering it does not.

Strip author names, timestamps and edit history before you send a trimmed document.

Delete, or keep what you want?

If you are removing more than about half the document, extracting the pages you want is faster and less error-prone: fewer numbers to type means fewer numbers to get wrong. And if the reason you are deleting pages is file size, deleting rarely helps as much as compression, because the weight is usually in the images on the pages you are keeping.

Frequently asked questions

How do I delete a page from a PDF for free?

Open the file in a browser-based page editor, click the thumbnail of the page you want removed, and download the result. On a Mac you can also use Preview: show thumbnails with Option+Command+2, select the page and press Delete.

Can I delete PDF pages in Windows without installing anything?

Not with a built-in Windows feature. Edge displays and annotates PDFs but cannot remove pages, and there is no page editor in File Explorer. A browser-based tool is the closest equivalent.

How do I remove all the blank pages from a scan?

Blank scanned pages usually carry speckles, so filters looking for pure white miss them. Sort by page size, since an empty page is a fraction of the weight of one with text, or select every even page if the blanks came from duplex-scanning a single-sided original.

Does deleting a page make the PDF smaller?

Only if the page contained something substantial. Removing a text page from a 30 MB scanned document changes almost nothing; removing a full-page photograph can save several megabytes. Compression usually achieves far more.

Is a deleted page really gone from the file?

Not always. PDFs can be saved as incremental updates that append changes rather than rewriting the file, leaving orphaned objects behind. For confidential pages, use a tool that fully rewrites the document, then flatten it and strip the metadata.

Tools

Keep reading