Reorder PDF Pages by Dragging Thumbnails

No account. No upload. Just the tool.

You assembled a PDF from someone else’s chapters and they came in the wrong order. A scanner fed the pages out of sequence. The appendix is at the front of the document instead of the back. The cover page is page 3. Most online tools force you to upload the whole file, set up an account, then drag-reorder in their UI — and the upload often takes longer than the reorder itself. Signegy reorders PDF pages in your browser. Drop the file, drag thumbnails into the order you want, download the result. Nothing uploads.

How to Reorder

  1. Drop your PDF onto the tool above. Thumbnails for every page render below the toolbar, in their original order.
  2. Drag a thumbnail to a new position. Hovering over another thumbnail highlights it as the drop target. Release to insert the dragged page at that position; the rest of the pages shift to make room.
  3. The chip in the toolbar flips from “Original order” to “Order changed” as soon as you move anything. The “Reset order” button restores the original sequence.
  4. Click “Download reordered”. The output PDF saves as [original]-reordered.pdf, with the same pages in the new sequence.

Each thumbnail shows two numbers: Page N (the original page number from the source PDF — never changes, so you always know what you’re moving) and #N (the new position, which updates as you drag). The output PDF reflects whatever order is currently shown.

What Reordering Actually Does

PDFs are a tree of objects with a page list at the top. Reordering pages means copying the source pages into a new document in the order you specify and writing the new file. We use pdf-lib’s copyPages to do this — the page content streams (text, images, fonts, vectors) are copied byte-for-byte. There’s no re-rendering, no quality loss, no font substitution. The result is a new PDF where the pages are the same as the originals, just sequenced differently.

This means anything baked into a page travels with that page. If your original page 5 has “Page 5 of 20” in the footer, and you move it to position 1, the footer still reads “Page 5 of 20” — it’s just now the first page of the document. To get clean sequential numbering after reordering, run the result through Add Page Numbers, which overlays a fresh count on top of (or in place of) what’s there.

Why Browser-Based Reorder Beats the Cloud Versions

Reordering is the single most embarrassing thing to upload. The whole reason you need to reorder is that the document, in its current state, is wrong — and now you’re handing the wrong-order version to someone else’s server with the trust they’ll process it correctly and not retain a copy. Half the popular reorder tools require an account, which means your reorder of a confidential document is now associated with your email. Many pop a watermark on the output unless you pay.

Signegy’s tool runs the reorder in your browser. The PDF bytes never leave the page. There’s no server log of “user uploaded confidential-merger.pdf at 3:14 PM”. You can verify this by opening the network tab during the reorder — there are no uploads. The output downloads directly from the in-memory blob the tool built. When you close the tab, everything is gone.

This matters most for the documents people actually need to reorder: contracts, internal memos, board packets, signed agreements where the signature page is in the wrong place, NDA stacks where the cover sheet got separated from the body. None of those should be uploaded somewhere just to flip page positions.

Honest Limits

  • Drag-only, no keyboard reorder. v1 supports HTML5 drag-and-drop only. Keyboard-driven reorder (e.g., focus a page, press arrow keys to move) isn’t implemented yet.
  • Smooth up to ~50 pages. Rendering thumbnails for very long documents (200+ pages) takes time and the drag UI gets unwieldy. For long documents, split into chunks, reorder each, then merge back together.
  • Same-document only. This tool reorders pages within a single PDF. To assemble pages from multiple PDFs in a custom order, use Merge PDF in page mode — it lets you drop multiple files and arrange pages from all of them.
  • Page numbering is your problem. Reordering doesn’t update any text on the pages, including page numbers in headers/footers. Re-number with Add Page Numbers if needed.
  • Encrypted PDFs not supported. Password-protected PDFs need to be unlocked first. We don’t ask for passwords because there’s no secure place to handle them in a browser-only tool.

Common Use Cases

Cover page in the wrong place. A contract was assembled with the cover sheet last instead of first. Drag the cover from page N to position 1.

Appendix at the front. A report has the data appendix bundled before the main body. Drag the appendix block to the end.

Mis-scanned documents. A multi-page scan where the feeder pulled pages out of sequence. Drag each page to where it should go.

Reverse-order scans. Some scanners deliver the pages in reverse. Reordering by drag is faster than re-scanning. (For long documents, this is a case where you genuinely want a “reverse all” button — it’s not in v1, but worth opening a feature request.)

Reassembling after a sign-and-return. You sent a 5-page contract for signature, the signed page came back as a single PDF, and you need to slot it back into the right spot in the original. Merge the signed page in (using Merge PDF, page mode), then reorder here to put it where it belongs.

Pair With Other Tools

  • Split PDF — pull out specific pages or ranges before or after reordering.
  • Merge PDF — combine pages from multiple PDFs in any order; reorder a single PDF here.
  • Rotate PDF pages — fix sideways pages that came out of a feeder scanner.
  • Delete PDF pages — drop pages you no longer want before reordering what’s left.
  • Add Page Numbers — re-number after reordering to get a clean sequential count.

Signegy provides general information, not legal advice. Consult a qualified legal professional for advice specific to your situation and jurisdiction.

Frequently Asked Questions

Does reordering re-encode the pages or lose any quality?

No. We use pdf-lib to copy the original page objects into a new document in the order you set. The page contents — text, images, vectors, fonts — are byte-for-byte the same as the source. Only the order changes.

Will the page numbers update automatically after reordering?

No. If your document has page numbers baked into the page content (a footer that reads 'Page 5 of 20', for example), those numbers move with the page. After reordering, run the result through Add Page Numbers to overwrite the old numbering with a fresh, sequential one. If your numbers are part of a header/footer template the original author set, you may need to redact the old number first.

Is there a maximum file size or page count?

Practical limits depend on your device's RAM. We render thumbnails for every page, so very long PDFs (200+ pages) can take a moment to load and feel sluggish to drag. Up to about 50 pages stays smooth on a typical laptop. Beyond that the tool still works, but consider splitting the PDF, reordering each chunk, and merging — that's faster than scrolling through a wall of thumbnails.

Does the original page numbering shown on each thumbnail update as I drag?

Each thumbnail shows two numbers: the original page number from the source PDF (so you always know what you're moving) and the new position. The original-page label never changes; the position label updates live as you reorder. The output PDF will have the pages in their new positions.

What if I just want to swap two pages?

Drag one onto the other. The dragged page slides into the target's spot, pushing the rest down. To literally swap, you'd drag A onto B's spot, then drag B onto A's old spot. For a single move it's just one drag.