Reorder and Delete PDF Pages Using Visual Thumbnails
Loads every page as a thumbnail you can move or remove, then rebuilds the document with pdf-lib — copying the original pages, so nothing is re-encoded and no quality is lost.
About the PDF Organizer
Add a PDF and the tool renders a small preview of every page into a grid before you do anything else. Each card carries three controls: a left arrow to move that page earlier, a right arrow to move it later, and a cross to drop it from the document entirely. The label under each thumbnail keeps showing the page's number in the original file, not its new position, so after a dozen moves you can still tell where a page came from.
When the sequence looks right, saving builds a fresh document containing only the pages you kept, in the order you left them. This is document assembly rather than editing: the pages themselves are untouched, and what changes is which ones are present and what order they sit in.
Key Features
- Every page visible up front: Thumbnails are rendered as soon as the file loads, so you are working from what the pages look like rather than from a list of numbers.
- Reorder and delete in one pass: Removing a redundant page and moving another to the front are the same operation here, which avoids running a document through two separate tools.
- Original page numbers stay on the cards: Labels track the source page, making it possible to check your work against the document you started from.
- Lossless output: Pages are copied between documents with pdf-lib rather than re-rendered, so text stays selectable, images stay at original quality and the file does not grow.
- A safe workspace: Nothing is written until you press save, so removing pages you turn out to want costs you only a reload.
- Assembly without an upload: pdf.js draws the thumbnails and pdf-lib writes the result, both from code held on this domain, so a document is never sent away to be rearranged.
How to Use the PDF Organizer
- Add the PDF you want to reorganise — thumbnails appear automatically.
- Use the left and right arrows on any card to move that page one position at a time.
- Use the cross on a card to remove a page you do not want in the final document.
- Press Save Reordered PDF and download the result, named with -reordered on the end.
How It Works
Thumbnails are drawn by pdf.js at 0.28 scale, small enough that even a long document renders its grid quickly. The order you build is held as a simple list of source page numbers, and saving hands that list to pdf-lib, which copies those pages out of the original document in that sequence into a new one.
Because it is a copy rather than a re-render, the output is bit-for-bit as good as the input — this is the important difference between reorganising a PDF and converting it. It also means a page can appear only once: there is no duplicate control, so building a document that repeats a page is not something this tool does.
The honest limitation is the movement model. Arrows shift a page by a single position per click, and there is no drag and drop, so bringing page 40 to the front takes thirty-nine clicks. For a wholesale reordering of a long document, extracting the sections you need and merging them in the right order is faster.
When You Need It
An inventor preparing a patent application has to file the specification, claims, abstract and drawings in the order the patent office prescribes, and the scanned exhibits came back from the copier in the order they happened to be stacked. Fixing that sequence matters more than usual here: an unfiled application is unpublished by definition, and putting it through a web service before the filing date is precisely the kind of disclosure that patent attorneys spend their time warning clients about.
A franchise owner assembling an operations manual from documents written by several different people ends up with duplicated cover sheets and sections in the wrong sequence. Pulling out the redundant pages and reordering the rest is a ten-minute job with thumbnails in front of you, and the manual — which contains supplier terms and margin figures the franchisor treats as confidential — stays on the laptop while it happens.