Reorder the Pages in a PDF
See every page as a thumbnail and drag it where it belongs. The pages are moved, not redrawn — the same page objects end up in a different order, so bookmarks, hyperlinks, form fields and selectable text all come through untouched.
Use this without the search next time. Prathom Workbench puts Prathom's tools in your toolbar.
Add to Chrome — freeWhat it does
- Drag a page, or move it with arrow buttons
- Structural move — bookmarks, links and form fields survive
- Every page shown as a thumbnail before you commit
- Nothing is re-rendered, so nothing loses quality
How to use Organize PDF Pages
- 1
Add the PDF
Drop the file in. Each page is rendered as a thumbnail so you can see what you are moving, with its original page number underneath.
- 2
Move the pages
Drag a thumbnail to a new position, or use the arrows on each card. The arrows work with a keyboard and a screen reader, which dragging does not.
- 3
Save the new order
The button stays disabled until something has actually moved, so you cannot accidentally download an identical copy.
How it works
qpdf rewrites the document's page tree — the list inside the file naming which page object appears in which position — and copies every page object across unchanged. The order changes; the pages do not.
Moved, not redrawn
There are two ways to reorder a PDF and they produce very different files.
The wrong way is to render each page and assemble a new document from the results. It looks correct on screen and it destroys everything that is not ink: the text layer becomes an image, bookmarks vanish, internal links point nowhere, form fields stop being fields.
The right way is to rewrite the page tree — the list inside the file that says which page object comes in which position. The page objects themselves are untouched. That is what happens here, through qpdf, and it is why the output is usually within a few bytes of the input and why a contents page still works afterwards.
Dragging is not the only way
Every page card has arrow buttons alongside the drag handle, and they are not a fallback for browsers that cannot drag.
HTML5 drag and drop cannot be operated with a keyboard, is awkward on a touchscreen, and is invisible to a screen reader — a page built only around it is unusable for anyone in those three groups. The arrows do the same job, are reachable by Tab, and announce which page they move.
What this deliberately does not do
It does not delete pages, and it does not rotate them.
That is a choice rather than a gap. A grid where dragging can both reposition and remove is a grid where a slightly long drag destroys a page, and there is no undo on a file you are about to download. /delete-pdf-pages and /rotate-pdf each do one thing where the consequence of a mistake is visible before you commit.
Why the order came out wrong in the first place
Three causes account for almost every reordered document.
A sheet-fed scanner fed a face-down stack produces the pages in reverse,
because the sheet at the top of the pile is the last one it reaches. A duplex
scan run as two passes — all the fronts, then all the backs — produces pages
1, 3, 5, … followed by 2, 4, 6, …, and interleaving them by hand is what this
grid is for. And a merge of files whose names sorted differently than you
expected puts sections in the wrong place, because 10.pdf sorts before
2.pdf in every file manager that sorts as text.
All three leave a document whose content is complete and whose sequence is not, which is the cheapest kind of problem to fix and the most annoying to live with.
Check before you download
The thumbnails are rendered at low resolution, which is enough to recognize a page and not enough to read it. If two pages look alike — a form and its duplicate, two pages of the same table — open the original alongside and check by content rather than by thumbnail.
The button that saves stays disabled until something has actually moved, so an unchanged document cannot be downloaded as though it had been rearranged.
Examples
A scan that came out backwards
A sheet-fed scanner that takes the stack face-down produces the document in reverse. Reversing it here is a minute's dragging.
An appendix that belongs at the end
Pages 3 to 6 moved after page 20. The internal links from the contents page still point at the right pages afterwards.
Frequently asked questions
Do bookmarks and links survive?
Yes. The reordering is done by qpdf, which rewrites the document's page tree — the same page objects, listed in a different sequence. Bookmarks, internal links, form fields, annotations and the text layer are the ones from your file, not regenerated ones. A tool that reorders by printing the document to a new PDF loses all of that, which is why a rearranged file sometimes comes back with dead contents links.
Will the pages lose quality?
No, and they cannot, because nothing is rendered, re-compressed or redrawn at any point. The page content streams are copied across byte for byte and only their order in the document's page tree changes. The output is normally within a few bytes of the input size, and a checksum of any individual page's content is identical before and after.
Can I delete pages here too?
Not on this page, deliberately. Reordering and deleting are different decisions and mixing them makes both riskier — it is easy to drag a page off the end while meaning to move it. /delete-pdf-pages removes pages, and running the two in sequence is the safe way to do both.
Why does it stop at 120 pages?
Because arranging pages by eye stops working long before that. Past a hundred thumbnails you are scrolling a wall, not seeing a document, and each one is a separate render on the server. For a long file, /split-pdf breaks it into sections that can be reordered and then merged back.
Is my document uploaded?
Yes — the pages are rendered and rearranged on our server, because that is where qpdf runs. The file and everything made from it are deleted within 30 minutes. Nothing is stored, indexed or looked at.
Further reading
- Three PDFs Merged Into Less Than Half Their Combined SizePeople expect a merged PDF to weigh what its inputs weighed, and are surprised when it does not. Joining three copies of an eight-page document produced a file well under half the combined size, and the reason explains something useful about what is actually inside a PDF.
- Rotating Every Page of a PDF Cost 29 BytesA rotated PDF looks like a document that has been redrawn, so people expect rotating one to cost something — quality, size, or both. It costs almost nothing, and understanding why tells you which other PDF operations are safe and which are not.
- Why item10 Sorts Before item2Sort a list of files and item10 lands before item2. This is not a bug and it is not a bad sort — it is the correct result of comparing text as text. Natural sort is the fix, and knowing when not to use it matters as much as knowing how.