Rotate PDF Pages
Turn pages that came out sideways or upside down and save the correction into the file, so it stays fixed for everyone who opens it. You can rotate the whole document or just the pages that need it, and the rotation is added to whatever the page already had — which is why a scan that is already at an odd angle ends up straight rather than back where it started.
Use this without the search next time. Prathom Workbench puts Prathom's tools in your toolbar.
Add to Chrome — freeRotate PDF pages
Turn a page, a range, or the whole document 90° at a time — added to whatever rotation each page already has.
What it does
- Rotate 90 degrees either way, or 180
- Apply to every page or a selection
- Adds to existing rotation rather than replacing it
- Saves the change permanently into the file
- No re-rendering, so no quality loss at all
How to use Rotate PDF
- 1
Open the PDF
Drop the file in. The page count is read immediately so you can identify which pages need turning.
- 2
Choose which pages
Leave the box blank to rotate everything, or list the pages that are wrong — "3, 7-9" or the odd and even keywords.
- 3
Pick a direction
90 degrees right, 90 degrees left, or 180 for a page that is upside down.
- 4
Rotate and save
Press Rotate pages and save. The rotation is stored in the file, so anyone who opens it sees the corrected orientation.
How it works
Page rotation in a PDF is a single number attached to each page, restricted to 0, 90, 180 or 270. A reader draws the page's contents and then turns the result by that amount. Nothing in the page's content stream changes when a page is rotated.
That has two useful consequences. Rotation is instant regardless of document size, because it edits one integer per page. And it is completely lossless, since the text, vectors and images are never touched.
The important detail is that the property is absolute, not relative. A page already stored at 90 degrees that you want turned another 90 must end up at 180 — so the tool reads the existing value and adds to it, then wraps into the 0 to 359 range.
Overwriting instead of adding is a real and common bug, and it produces a frustrating symptom: a scanned page that is already rotated appears not to respond to the rotate button at all, because every press sets it back to the same value. If you have ever fought with a PDF that refuses to straighten, this is very likely why.
Because every page is kept, the document is edited in place rather than rebuilt from copies. Rebuilding would risk losing document-level structures for no benefit when nothing is being removed.
When you'd use this
Scanned documents are the dominant case. Feeding a landscape page through a portrait scanner, or loading a stack the wrong way round, produces exactly this problem, and it is usually only some of the pages.
Documents assembled from several sources, where one contributor's pages were generated in a different orientation.
Photographs of documents taken on a phone and converted to PDF, which frequently arrive rotated because the phone recorded an orientation the converter ignored.
Anything you are about to print, where a sideways page wastes a sheet and a reprint.
Rotating versus fixing a skew
These are different problems with different answers, and it is worth being clear which one you have.
If the page is exactly sideways or exactly upside down, it is a rotation problem and this tool fixes it permanently, instantly, and without touching the content.
If the page is off by a few degrees — the typical result of a document photographed by hand or fed slightly crooked through a scanner — that is skew, and the PDF page rotation property cannot express it. Correcting skew means transforming the page's actual contents, which for a scanned image means resampling it, and for a text document means rasterizing and losing the text layer entirely. Scanner and OCR software handle deskewing at capture time, which is where it belongs.
Examples
A landscape table scanned sideways
Only the two problem pages are touched; the other fourteen keep their existing orientation, including any rotation they already had. Rotating the whole document to fix two pages is the mistake this selection box exists to prevent.
A page that was already rotated once
The new rotation is added to the existing 90, giving 180, rather than replacing it and leaving the page at 90 again. Tools that overwrite instead of adding are why some scanned documents seem impossible to straighten — every press appears to do nothing.
Frequently asked questions
Will the rotation stay when I send the file to someone else?
Yes. The rotation is written into the page's own properties in the saved file, so every PDF reader will display it that way. This is different from the rotate button in a viewer such as Chrome's built-in reader, which only changes what you are looking at and is forgotten as soon as you close the tab.
Why does rotating in my browser's PDF viewer not save?
Because a viewer's rotate control is a display setting, not an edit. It changes how the page is drawn on your screen and never touches the file. If you send the document on, the recipient sees the original orientation. A tool that rewrites the document, like this one, is needed for the change to persist.
Does rotating reduce quality or increase file size?
Neither. Rotation in a PDF is a number stored against the page, not a transformation applied to its contents. The text, vectors and images are untouched, so nothing is re-rendered and the file size barely changes. This is why rotating is instant even on a large scanned document.
Can I rotate by an angle other than 90, 180 or 270?
Not through the page rotation property, which the PDF format restricts to those three plus zero. Correcting a scan that is off by a few degrees is a different operation — it requires actually transforming the page content, which means rasterizing it and losing the text layer. Scanner software usually offers deskewing for exactly this reason.
What if only some pages are wrong?
List them in the selection box. Ranges, individual numbers, and the odd and even keywords all work, and a blank box means every page. Sideways pages in a scanned document often follow a pattern — every landscape table, or every second sheet — which the keywords handle in one instruction.
Further reading
- Rotating Every Page of a PDF Cost 29 BytesA rotated PDF looks like a document that has been redrawn, so people expect rotating one to cost something — quality, size, or both. It costs almost nothing, and understanding why tells you which other PDF operations are safe and which are not.
- Rotating a JPEG and Back Changed 560,770 PixelsRotating a photo is not editing it. Nothing about the picture changes, only which way up it is — so it is reasonable to expect the pixels to survive. With most tools they do not, and the loss is the same kind a re-save costs.
- A Watermark on Ten Pages Cost 458 Bytes and Page Numbers Cost 199Putting something on every page of a document sounds like it should cost something per page, and it does — about twenty bytes. What a watermark does not do is anything to protect the document, which is the reason most people add one.