Rotate pages in your PDF to the correct orientation and download a new rotated PDF file.
1, 3, 7-12. Useful for fixing double-sided scans where every other page came in upside down./Rotate entry so the orientation is permanent — every viewer (Acrobat, Preview, Chrome, mobile) will open it correctly. No sign-up, no watermark.A PDF page that opens sideways or upside down isn't a viewing glitch — the file's underlying coordinate system is genuinely rotated, and most readers honor that rotation when you print, email, or import the document downstream. Rotating fixes the file at the source so every downstream tool (print servers, e-signature platforms, archival systems, OCR pipelines) reads the page the way a human reads it. Common reasons people need this:
/Rotate value; submitting a portrait document where one page is logically landscape (but stored upright) breaks imposition. Rotating to match the intended print orientation prevents short-edge / long-edge binding mistakes.Need to fix more than orientation? Try Compress PDF to shrink the rotated file, Split PDF to extract specific pages, or Merge PDF to reassemble after rotating different pages with different angles. Working from photos instead? Use Image to PDF to build the PDF from already-correct images.
PDF's page object stores rotation as a /Rotate integer that "shall be a multiple of 90" per the ISO 32000-1 specification, Table 30. The four legal values:
| Stored angle | Common label | What you see | Typical use |
|---|---|---|---|
| 0 | Upright / no rotation | Page as authored | Default for born-digital PDFs |
| 90 | 90° clockwise | Top edge moves to the right | Fix a portrait page scanned sideways with the top toward the right |
| 180 | 180° / flipped | Page upside down | Fix every-other-page duplex scans and upside-down phone scans |
| 270 | 90° counter-clockwise (a.k.a. -90°) | Top edge moves to the left | Fix a portrait page scanned sideways with the top toward the left |
Rotation values outside multiples of 90 (e.g., 45°) are not permitted in the PDF spec for the page-level /Rotate entry; tools that advertise "arbitrary angle rotation" do so by rasterizing pages, which destroys vector text and bloats file size. xconvert sticks to spec-legal multiples of 90 to keep the file lossless.
Most PDF readers offer two distinct rotate operations, and confusing them is the most common reason a "rotated" PDF reverts when someone else opens it.
| Operation | Modifies the file? | Persists across viewers? | Where to find it |
|---|---|---|---|
Permanent rotation (writes /Rotate) |
Yes | Yes — every viewer opens the page rotated | xconvert Rotate PDF; Acrobat "Organize Pages > Rotate"; Sejda, Smallpdf, iLovePDF |
| View-only rotation (display only) | No | No — only your current session | Acrobat & Reader: View > Rotate View; Preview: Tools > Rotate (without saving) |
Per Adobe's documentation on rotating PDF pages in Acrobat, only the Organize Pages > Rotate command writes the rotation to the file; View > Rotate View changes the on-screen orientation for the current session only and is discarded when you close the document. xconvert's Rotate PDF always writes the permanent variant — the downloaded file is genuinely rotated at the page-object level, not just displayed differently.
No. Rotation updates each page's /Rotate attribute (and adjusts the coordinate-transformation matrix where needed), but the underlying text objects, font references, and selectable-text layer stay intact. Selectable text remains selectable, and any OCR layer (the /StructTreeRoot and text-on-image overlays produced by Acrobat OCR, ABBYY FineReader, or Tesseract) is preserved. If a PDF wasn't searchable before rotation, it still isn't after — you'd need to re-run OCR to add a text layer.
Most mobile scanner apps tag pages with EXIF-style orientation metadata based on the device's accelerometer at capture time. If you tilted the phone, scanned a landscape document while in portrait mode, or the app misread the gyroscope, the resulting PDF stores a non-zero /Rotate value or rasterized the page sideways. Rotating in xconvert overwrites the orientation in the file so it opens correctly everywhere — including in print queues that ignore in-app display rotations.
Rotate View (View menu, or Shift+Ctrl+Plus / Cmd+R) only changes the on-screen display for your current session. Close the file and reopen it — it's back where it started. Organize Pages > Rotate (the toolbar option, also accessible by right-clicking a page thumbnail) writes the new orientation into the file's page object so every viewer renders it rotated. xconvert's Rotate PDF performs the second kind: the file you download is permanently rotated.
Yes. Use the Pages filter to restrict rotation to odd pages, even pages, or a custom page list. The classic use case is a duplex-scanned document where the sheet feeder fed one side face-up and the other face-down — every even page lands upside down. Selecting "even pages only" with 180° rotation fixes the entire document in one pass without touching the correctly-oriented odd pages.
No to all four. xconvert rewrites only the page-object rotation metadata; content streams, embedded fonts, hyperlinks, bookmarks, annotations, form fields, and digital-signature objects are copied byte-for-byte. File size stays within a few hundred bytes of the original. The only thing that can change is a digital signature's "valid" status — see below.
Yes, if the signature covers the whole document (the common case). Digital signatures hash the entire file at the time of signing; any byte change — including a /Rotate update — produces a "signed document has been modified since signing" warning per the PAdES standard (ETSI EN 319 142). The visual content and text remain valid; only the cryptographic signature is reported as broken. If signature validity matters, rotate the file before it gets signed, or ask the signer to re-sign the rotated version.
PDFs with an open password (one required to view the file) must be unlocked first — xconvert will prompt you for the password before processing. PDFs with only an owner/permissions password (no password needed to view, but rotating may be restricted) will be rotated if the file's permission flags allow modification; otherwise xconvert reports the operation as blocked. The output inherits the same permission flags as the input.
Yes. Rotation works at the PDF page-object level, not the content level, so an image-only scanned PDF rotates identically to a born-digital one. The image stream stays in place; only the page's stored orientation flips. After rotating, run Compress PDF if the scan is too large to email, or PDF to JPG if you'd rather export the rotated pages as images.
Print drivers honor the page's /Rotate value, not your reader's view rotation. If you "fixed" the PDF using View > Rotate View in Acrobat or Preview, the on-screen display rotates but the file's stored orientation hasn't changed — the printer ignores the view rotation and prints the original orientation. The fix: use xconvert (or Organize Pages > Rotate in Acrobat) to write the rotation into the file permanently, then re-print.