Blog · 2025-10-22 · 4 min
Why a rotated PDF sometimes prints the wrong way round
Rotation in a PDF is a note attached to the page, not a change to it. That distinction explains a whole family of printing surprises.
You rotate a scanned page so it is the right way up, save it, send it to print, and it comes out sideways. The file looked correct on screen. It looked correct to the person you sent it to. The printer disagreed.
Rotation is a note, not a change
When you rotate a PDF page, nothing about the page content moves. The letters stay where they were, in the orientation they were drawn. What changes is a single attribute on the page that says: display this turned by ninety degrees.
Readers honour it. Printers usually honour it. But it is an instruction to whoever is displaying the page, not a property of the page itself — and anything that rebuilds the page has to decide what to do with it.
Where it goes wrong
Tools that ignore the attribute. Resize a rotated page and a naive implementation reads the page as its authored dimensions — portrait — while the reader has been showing it as landscape. You end up with a document that is the right size on paper and the wrong way round on screen. The fix is to apply the rotation before doing the geometry, so the output has no rotation left to misinterpret.
Documents where some pages are rotated and some are not. These look consistent on screen and behave inconsistently everywhere else. Printer drivers, imposition tools and page-size checks may all disagree about what shape the pages are.
Rotation that accumulates. Turning a page by ninety degrees twice should give you one hundred and eighty, not ninety again. Whether it does depends on whether the tool adds to the existing value or replaces it — and both behaviours exist in the wild.
The upside
Because rotation is only an attribute, it is completely lossless. Nothing is re-rendered, no quality is lost, text stays selectable, and the file barely changes size. Rotating a four-hundred-page scan takes a fraction of a second, because almost nothing happens.
Compare that with straightening a page by a small angle, which cannot be done with an attribute — there is no "rotate by two degrees" note — and requires actually transforming the content.
Practical advice
- Fix orientation once, early, before anything else touches the geometry. Rotate, then resize, then impose — not the other way round.
- If a document prints wrong, check for mixed orientation before assuming the printer is at fault. A document where nine pages carry a rotation and one does not will surprise you exactly once per document.
- After rotating, look at the page dimensions, not just the preview. If a tool reports a page as 595 by 842 while showing it as landscape, the rotation is still an unapplied note, and the next tool in your chain may read it differently.