How to Rearrange PDF Pages: Reorder, Rotate, and Organise Documents
Pages in the wrong order, upside-down scans, a cover that belongs at the front — page organisation is the most common PDF repair job there is. Here is how to do it with Acrobat, free online tools, or the command line, and what happens to bookmarks, links, and page numbers when you do.
The Jobs This Covers
Page organisation problems arrive in a handful of familiar shapes: a document assembled from several files with the sections in the wrong order; a scan that came out back to front because the stack went into the feeder face down; a duplex job scanned as “all the odd pages, then all the even pages in reverse”; landscape pages lying on their side in a portrait document; a title page that needs to move to the front; and pages that simply should not be there. All of these are the same underlying operation — changing which pages appear, in what order, at what orientation — and none of them require editing any page’s content.
What Actually Happens When You Reorder Pages
Inside the file, a PDF keeps its pages as entries in a page tree — a structure that lists page objects in display order, while the content of each page (text, images, fonts) lives in separate objects the tree points at. (Our guide to PDF file structure walks through this.) Reordering pages rewires the tree; nothing else changes. Rotation is even lighter-weight: each page carries a rotation flag of 0, 90, 180, or 270 degrees, and rotating a page just updates that flag.
Two practical consequences. First, page organisation is lossless — no recompression, no re-rendering, no quality change, ever. Second, it is fast even on huge files, because the megabytes of images and fonts are never touched. If a tool takes minutes to reorder a 500-page file, it is doing something it doesn’t need to.
Method 1 — Adobe Acrobat Pro (Organize Pages)
Open the PDF and choose Tools > Organize Pages. Acrobat replaces the page view with a thumbnail grid of the whole document, and this one screen does everything:
- Reorder by dragging a thumbnail; a blue insertion bar shows where it will land. Shift-click or Ctrl-click selects several pages to move as a block.
- Rotate via the buttons that appear when you hover over a thumbnail — or select a range and rotate the lot (fix every landscape page in one pass).
- Delete with the bin icon on the thumbnail or the toolbar.
- Insert pages from another file, the clipboard, or a scanner, at any position.
- Extract pages out to a new document — covered in detail in our splitting guide.
Save with File > Save As to a new name so the original order survives as a backup. One licensing note: the free Acrobat Reader displays page thumbnails but cannot reorder, rotate-and-save, or delete pages — Organize Pages is a paid Acrobat feature.
Method 2 — Free Online (Visual Drag and Drop)
Mapsoft’s PDF Hub Page Manager gives you the same visual workflow in the browser, free: upload a PDF and every page renders as a thumbnail you can drag into a new order, rotate individually or as a selected range, or delete — with undo and redo while you work, which matters more than you’d think halfway through reshuffling a 40-page report. When the order looks right, process and download the result. Files are handled on Mapsoft’s own UK servers and deleted automatically within 24 hours.
As with any online tool, the document leaves your machine — for confidential material use Acrobat, the command line below, or a desktop application such as Mapsoft’s PdfHub Local, which never uploads files.
Method 3 — The Command Line (qpdf)
For long documents and repeatable jobs, the free, open-source qpdf beats any amount of dragging. Its --pages option takes a page-range expression where z means the last page:
Reorder sections — move pages 3–8 in front of pages 1–2:
qpdf in.pdf --pages . 3-8,1-2,9-z -- out.pdf
Reverse a back-to-front scan — z-1 runs last-to-first:
qpdf in.pdf --pages . z-1 -- out.pdf
Fix the classic duplex-scanner mess — odd pages in one file, even pages scanned in reverse in a second file — by interleaving with --collate:
qpdf --empty --collate --pages odd.pdf even.pdf z-1 -- combined.pdf
Rotate specific pages — turn pages 2 and 4 by 90°:
qpdf in.pdf out.pdf --rotate=+90:2,4
For scripted pipelines in Python, pikepdf and pypdf expose the page list directly — reordering is a list operation (reversed(), slicing, insert()) followed by a save, and .NET/Java libraries such as Aspose.PDF and iText do the same for application code.
What Survives a Reshuffle — and What Doesn’t
Because reordering only rewires the page tree, most document features follow their pages around correctly — but not everything, and the exceptions cause real confusion:
- Bookmarks and internal links: fine. They target page objects, not positions, so a bookmark still lands on the same content after the page moves. Deleting a page, though, leaves any bookmark or link that pointed at it dead — check the bookmark panel after deletions.
- Printed page numbers: not fine. The “7” printed at the foot of page 7 is page content and moves with the page. After a significant reorder you need to re-stamp numbering — see our guide to PDF page numbering.
- Page labels: check them. The label metadata that makes a viewer show “iv” or “A-1” in the toolbar is defined by position ranges, so reordering can knock labels out of step with the new sequence — our page labels guide explains how they work.
- Tagged reading order: review it. In an accessible (tagged) PDF the logical structure has its own order; after heavy page surgery, verify the reading order in an accessibility checker — see PDF accessibility.
- File size after deleting pages: may not shrink. Deleted pages’ images and fonts can remain in the file as unreferenced objects until it is rewritten. If you delete a lot and the file stays big, run it through an optimiser — see reducing PDF file size.
Tool Comparison: Which Method When
| Tool | Best for | Pricing | Privacy / data residency |
|---|---|---|---|
| Acrobat Pro (Organize Pages) | Full visual control plus insert-from-scanner and extract, on the desktop | Acrobat Pro subscription (~£15/month) | Local processing; data stays on your machine |
| Mapsoft PDF Hub Page Manager | Free visual drag-and-drop reorder, rotate, and delete with undo/redo — no install | Free | Processed on Mapsoft’s UK servers; files deleted within 24 hours |
| qpdf (command line) | Long documents, reversals, duplex collation, repeatable scripted jobs | Free, open source | Local; runs on your machine |
| pikepdf / pypdf (Python) | Page assembly inside batch pipelines | Free, open source | Local; runs on your infrastructure |
| Acrobat Reader (free) | Viewing thumbnails only — cannot reorder, rotate-and-save, or delete | Free | Local |
Related Articles
How to Rotate PDF Pages
Rotate PDF pages permanently — in Acrobat, online, or at the command line — and why rotation is lossless.
How to Remove Pages from a PDF
Delete specific pages while preserving bookmarks, links, and file size.
PDF Page Labels
Why the viewer shows “iv” while the file says page 4 — how page labels work and how to fix them.
Organise PDF Pages Online for Free
Use Mapsoft's PDF Hub to reorder, rotate, and delete PDF pages visually — plus merge, split, compress, and more, directly in your browser with no installation or signup.