How to remove pages from a PDF
Deleting pages and extracting pages are the same operation described from opposite ends. Here is how to say what you want without losing the wrong ones.
3 min read · updated
The short answer
Most tools have no delete button, and it is not an omission. Deleting pages and extracting pages are the same operation: you describe the pages you want to keep, and everything you leave out is gone.
To drop page 7 from a twenty-page document, ask for 1-6, 8-20. The result is your document without page 7.
The split tool here works this way and shows the resulting page count as you type, which is the quickest way to catch a mistake before you commit to it.
Writing the range
| You want | You type |
|---|---|
| Only page 4 | 4 |
| Pages 2 to 6, inclusive | 2-6 |
| Pages 1 to 3, then 5, then 8 to 10 | 1-3, 5, 8-10 |
| Everything from page 8 onwards | 8- |
| Everything except page 7, in a 20-page file | 1-6, 8-20 |
| The first and last page only, in a 12-page file | 1, 12 |
Order is part of the instruction
Pages come out in the order you list them. 5, 1, 3 produces a three-page document in that sequence, not a sorted one. This is useful — it means the same box can reorder a document as well as trim it — but it also means a typo changes the order rather than being rejected.
A backwards range like 5-3 is a different matter. A good tool refuses it and says so. A tool that silently reads it as 3-5 has quietly given you a different document from the one you asked for, and you will not necessarily notice.
Checking before you send it
Count first
Work out how many pages you should end up with and compare it to what the tool reports. Removing one page from twenty leaves nineteen; if the number says eighteen, a range is wrong.
Open the result
Look at the pages either side of a removal. That is where an off-by-one shows up — the removed page is still there, or the one before it has gone too.
Remember what removal does not do
Taking out a page removes its content, not references to it. A contents page, cross-references and page numbers printed on the pages themselves will all still describe the original document.
If the page you are removing is the sensitive part
Removing a page does genuinely remove its content from the new file — this is not the black-box problem. But two things are worth knowing.
- If only part of a page is sensitive, removing the whole page is blunt. Redacting that part and keeping the page is usually what you actually want.
- The original file still exists wherever you left it. Producing a trimmed copy does not change the copy in your downloads folder, your sent mail, or the shared drive.
And if the document is sensitive at all, do it somewhere that does not upload it. How to check whether a tool uploads your file.
Frequently asked questions
Why is there no “delete these pages” box?
Because it would be a second way to describe the same operation, and the two can disagree. One box that means “keep exactly this” has a single, checkable interpretation, and the page count under it tells you immediately whether you got it right.
Can I remove pages on a phone?
Yes. Because the work happens in the browser, a phone does it the same way a laptop does — though a very large document will be slower and may run out of memory, in which case do it in two passes.
Will removing pages shrink the file?
Usually, but not always proportionally. Fonts and images shared across pages may still be needed by the pages you kept, so removing a tenth of the pages rarely removes a tenth of the bytes.
Does this work on a password-protected PDF?
No. An encrypted PDF cannot be read without its password by any tool. Open it with the password in a PDF reader, save a copy without one, and work from that.
Related tools
- Split PDF
Pull out the pages you need, or break a document into one file per page — without uploading anything.
- Merge PDF
Join several PDFs into one document, in the order you choose — without uploading anything.
- Redact PDF
Remove text from a PDF for good — then see it proved. Nothing is uploaded, and a black box here is not just a black box.