Reordering, Rotating and Deleting PDF Pages
A document that comes out of a sheet-fed scanner is rarely right the first time: some pages are upside down, some were double-fed, and blank separator pages sit in between. Fixing those is faster than rescanning.
Three separate operations, one screen
Reordering, rotating and deleting are independent operations, but they are almost always needed together. The typical post-scan cleanup list looks like this:
- Reverse sides came out upside down in a duplex scan → rotate
- The feeder pulled two sheets at once and the order shifted → reorder
- Blank separator sheets landed in the middle → delete
- The cover page ended up last → reorder
Rotation does not degrade the page
Rotating in PDF does not redraw the page content. An angle value called /Rotate (90, 180 or 270) is written onto the page object and the reader displays the page at that angle. The content is untouched.
Two practical consequences: rotating causes no quality loss and does not change the file size. Rotating and re-saving a JPEG introduces loss; rotating a PDF page is entirely lossless.
Deleting may not shrink the file
Deleting ten pages and finding the file the same size is surprising. The reason is PDF incremental writing: some tools remove the page from the document but leave its bytes in the file, dropping only the reference in the page tree.
That means two things. First, the size does not drop as much as expected. Second, and far more important: the data of a deleted page can remain inside the file. If you deleted a page containing sensitive information and are about to share the document, you need to be sure the deletion actually removed it.
The safest approach is to run the document through an operation that rewrites it afterwards — for example extracting the remaining pages or compressing. Because those build the output from scratch, orphaned objects are not carried over.
Sorting out a two-pass duplex scan
When a feeder cannot scan both sides, all the fronts are scanned first and then all the backs. The result is 1, 3, 5, 7 … followed by 8, 6, 4, 2. The backs are also in reverse order, because the stack was flipped and re-fed.
| Step | Action |
|---|---|
| 1 | Reverse the group of back sides (into 2, 4, 6, 8 order) |
| 2 | Rotate the back sides 180° if needed |
| 3 | Interleave the two groups one by one |
| 4 | Check the first five pages — mistakes show immediately |
A checking habit
When page editing is done there is no need to read the whole document. Looking at four spots catches nearly every mistake: the first page, the last page, one page from the middle, and one of the pages you rotated.
Do not delete the original scan right after saving the edited version. Being able to go back to the source is always cheaper than scanning the same document twice.
Frequently asked questions
Does rotating a page reduce quality?
No. Rotation writes an angle value onto the page object and does not redraw the content. It is entirely lossless and does not change the file size.
I deleted pages but the file did not shrink. Why?
Some tools remove the page from the document tree but leave its bytes in the file. For a deletion to actually clean up, run the document through an operation that rewrites it.
Does the data of a deleted page stay in the file?
It can. That matters when you delete a page containing sensitive information and then share the document. Extracting the remaining pages, or compressing, rebuilds the output and leaves the remnants behind.
Why are the reverse sides upside down in a duplex scan?
The stack is flipped and re-fed, so the backs arrive both in reverse order and rotated 180 degrees. Reverse the group, rotate it, then interleave the two groups.
More guides
Converting PowerPoint to PDF: What You Lose and What You Gain
Why sharing a deck as PDF is usually better, what happens to animations, transitions and speaker notes, and how to design slides with PDF in mind.
Browser-Based vs Server-Based PDF Tools
What happens when you upload a file to an online PDF tool, what in-browser processing means, when each matters, and how to verify which one you are using.
Hidden Data in PDFs: Metadata and the Redaction Trap
What a PDF carries beyond the visible page, why drawing a black rectangle does not hide anything, and what to clean before sharing a document.
Try Konta PDF
Merging, splitting, reordering, encrypting, OCR and image-to-PDF are free. Files are processed in your browser.
Open the tools