Rotate PDF
Choose a PDF
The file is read in this page and never uploaded.
PDF pages rotate by 90, 180 or 270 degrees, every page or just the ones you name. It is completely lossless, because a PDF page carries a rotation value that viewers apply when displaying it, and changing that value does not touch the page content at all.
How it works
Every page has a Rotate entry, a multiple of 90 degrees. A viewer reads it and turns the page before drawing. Setting it is a metadata change: the text, images and vectors underneath are untouched, so nothing is re-rendered and nothing degrades.
- Rotation is cumulative. A page already at 90 degrees, rotated by another 90, ends at 180, which is why a scanned document with mixed orientations needs the range control rather than one blanket rotation.
- The page range uses the same syntax as the splitter: 1-3, 7, 12- and so on. Leaving it blank rotates everything.
- File size barely changes, because only a number in the page dictionary is different.
- Text stays selectable and searchable afterwards, unlike a rotation done by re-rendering pages to images.
This is why rotating a PDF is fundamentally different from rotating an image. An image rotation moves every pixel; a PDF rotation changes one instruction.
Examples
A landscape scan
Rotation
90° clockwise, all pages
Result
Every page turned, file size effectively unchanged
Only the Rotate value per page differs. The content streams are byte-identical.
Mixed orientations
Pages
3, 7, 11
Result
Only those three rotated
Common in a scanned batch where some sheets went through the feeder the wrong way.
Rotation stacks
Page
Already at 90°, rotated 90° more
Result
Ends at 180°
The new value is added to the existing one. Check the current orientation before applying a blanket rotation.
Frequently asked questions
Does rotating a PDF reduce its quality?
No, not at all. Rotation is a number in each page's dictionary that viewers apply when drawing. The content is never re-rendered, so text stays selectable, images keep their resolution, and the file size changes by only a few bytes.
Why did a page end up at a strange angle?
Because rotation is cumulative and that page already had one. A page at 90 degrees rotated by another 90 lands at 180. Scanned batches often have mixed existing rotations, which is why the range control exists.
Why does my viewer still show the old orientation?
Almost always a cached copy. Some readers hold a rendered version of the page, close the document fully and reopen it. A handful of very old viewers ignore the Rotate entry entirely, though that is rare now.
Can I rotate by an angle that is not a multiple of 90?
No. The PDF specification only permits rotation values of 0, 90, 180 and 270. Anything else would mean transforming the page content itself, which is a different and lossier operation.
How is this different from rotating an image?
An image rotation physically moves every pixel into a new buffer. A PDF rotation changes one instruction that the viewer obeys. That is why this is instant and free of quality loss regardless of how large the document is.