Blank sheets after scanning, a service page in the middle of a report, an extra appendix in a contract โ you often just need to throw a few pages out of a PDF. The "Delete Pages" tool in pdfredX removes them visually: you see all the pages as thumbnails, mark the unwanted ones and get a document without them. All in the browser, nothing uploaded to a server.
Step 01. Upload the PDF
Open pdfredx.com and add the document. PDF.js renders each page into a thumbnail, and the whole file lays out as a gallery of cards. Not a single byte goes to a remote machine.
Step 02. Mark the pages to delete
Turn on selection mode and click the thumbnails of unwanted or blank pages โ they get marked. You can see how many are selected. Press "Delete" โ the marked sheets are removed from the document.
- A quick way for a single page โ the ๐ button right on a card deletes it at once, without selection mode.
- Made a mistake โ before deleting, just unmark it with another click.
Step 03. Save the document without the extra pages
Press "Create PDF". The app assembles the file from only the remaining pages โ the deleted ones don't make it in. The finished "cleaned" PDF downloads straight from the browser. Free, no registration, no server queue.
How it works under the hood
All pages live in a single items[] array. Deletion is a filter over the array: the marked pages are excluded in one items.filter(...) operation, and the gallery redraws. On export jsPDF walks only the remaining elements and assembles a new document from them. So the deleted pages are physically absent from the final file โ this is not "hiding" but a rebuild without them.
Known limitations
Deletion by page boundaries. The tool removes whole sheets. Cutting a fragment within a page is a different task.
The export result is raster. The remaining pages are inserted as images, so the text in the final file can't be selected, and hyperlinks and bookmarks are not carried over. The deletion itself doesn't affect this โ it's a property of the export.
Undo is before saving. Until you press "Create PDF", you can change the order and set of pages freely; after export, edit the source, not the downloaded file.
Need to rearrange pages rather than delete them? That is the Reorder Pages tool. And to cut a document into parts โ Split PDF.
Try it right now โ pdfredx.com, no registration, your files stay with you.
