Skip to content

Delete Pages from a PDF

Drop a PDF, list the pages to remove, and download the result. Nothing leaves your browser.

Deleting pages from a PDF is not an edit-in-place operation — it is the same copy mechanism a split uses, just inverted. A PDF stores each page as a node in an internal page tree, and each node points at the fonts, images, and vector content it needs. This tool copies every page you did not mark for deletion, in their original order, into a brand-new document. Because nothing is rasterized or re-compressed, the pages that remain are pixel-identical to the originals: text stays selectable, fonts stay embedded, and vector graphics stay sharp. The whole operation runs in your browser — the file is never uploaded, and the source file on your device is left untouched.

Drop a PDF here, or

One PDF, up to 64 MB. Stays in your browser — nothing is uploaded.

How to use

  1. Drop your PDF

    Drag a PDF (up to 64 MB) onto the dropzone or click to choose one. The tool reads its page tree locally and shows the file name, page count, and size.

  2. Enter the pages to remove

    Type the page numbers and ranges to delete, comma-separated, e.g. "2,4,7-9". Numbers are 1-based, exactly as a PDF reader displays them.

  3. Review the count

    The tool validates the list against the page count — out-of-range numbers, malformed tokens, and attempts to delete every page are all rejected with a clear error before anything is built.

  4. Delete and download

    Click the button. The remaining pages are copied into a new PDF and offered as a single download named after your original file with "-pages-removed" appended.

Frequently asked questions

How do I delete multiple, non-contiguous pages at once?
List them separated by commas: "3,8,12" deletes exactly those three pages and leaves everything else untouched. You can mix single pages and ranges in the same list, e.g. "1,5-7,20".
Can I delete a whole range of pages in one go?
Yes — use a hyphen between the first and last page of the range, e.g. "7-9" deletes pages 7, 8, and 9. Ranges are inclusive at both ends, and you can combine several ranges and single pages in one entry.
What happens if I try to delete every page?
The tool refuses and shows an error instead of producing an empty file. At least one page must remain in the output, since a zero-page PDF isn't a valid document — remove one fewer page, or use a different tool if you genuinely want to discard the whole file.
Does deleting pages affect the quality of the ones that remain?
No. The remaining pages are copied as the original page objects — fonts, images, and vector drawing instructions — byte-for-byte into the new file. Nothing is rendered to pixels or re-compressed, so what's left is exactly as sharp as the source.
Can I undo this — does the tool keep my original file?
Your original file is never modified. This tool reads it into memory, builds a separate new PDF from the pages you kept, and offers that as a download. The source file on your device is untouched, so "undoing" simply means re-opening the original.
Can I delete pages from an encrypted or password-protected PDF?
Not directly. If the PDF is encrypted, the tool cannot parse its page tree and will show an error instead of producing broken output. Open the file in a PDF reader with the password, save an unprotected copy, and delete pages from that.

About

What deleting a page actually means inside a PDF

A PDF is a graph of numbered objects. The page tree is a hierarchy of /Pages nodes whose leaves are /Page objects; each leaf points at a content stream (the drawing instructions) and a resource dictionary listing the fonts, images, and graphics states those instructions use. There is no in-place "remove" that just deletes a node and calls it done — reliably dropping a page means building a new page tree from scratch, walking the graph for every page you kept, and copying every object each of those pages transitively references into the new document, renumbering references as it goes. That is the same mechanism a page split uses, just applied to the complement of your selection: instead of copying the pages you want, you copy every page except the ones you listed. It is lossless for the same reason splitting is — the copied objects are the original bytes, just relocated into a new page tree.

When deleting pages is the right move

A common case is a scanner artifact: office scanners often insert a blank page between documents in a batch, and that blank page needs to disappear before the file goes out. Another is an outdated cover sheet or a draft watermark page that a template still includes — deleting page 1 before sending a final version is faster than re-exporting from the source application, especially if you no longer have it. Because everything runs locally, this also works fine on confidential material — a contract with a redundant duplicate page, an internal memo with a page that should never have shipped — without that material passing through a third-party server.

Sources & references

Authoritative references behind the math, constants, and tables on this page. Verified by Buğra Sözeri on the dates shown and re-checked at every deploy.