Best free tool to rotate a PDF without watermarks?

I have a multi-page PDF where several pages were scanned upside down and sideways. I only need to rotate the pages and save the file, but every online converter I’ve tried either adds watermarks, limits pages, or compresses the quality. What free, safe tools or methods do you recommend to rotate and save a PDF while keeping the original quality and without hidden restrictions?

PDF24 Creator on Windows works well for this. No watermarks, no page limits, no upload to some random server.

Quick steps:

  1. Install PDF24 Creator from pdf24.org
  2. Open your PDF with it.
  3. The “PDF24 Editor” window shows thumbnails of all pages.
  4. Select the upside down / sideways pages.
  5. Use the rotate icons on top, rotate 90° or 180° as needed.
  6. Drag pages around if you want to reorder.
  7. Click “Save” or “Save as” to overwrite or create a new file.

All processing stays local on your PC.

If you want something portable, LibreOffice Draw also edits PDFs:

  1. Open the PDF in LibreOffice Draw.
  2. Click a page, rotate via Format → Rotate or right click.
  3. Export as PDF.

For a quick one-off on Linux, use pdfjam:

pdfjam --outfile fixed.pdf --landscape input.pdf

Or for specific pages:

pdfjam input.pdf ‘1-2,4’ --rotateoversize ‘true’ --outfile fixed.pdf

But PDF24 Creator is the closest to “open, rotate, save, no watermark, no limits” that I have used.

If you want something not already mentioned by @boswandelaar and also watermark‑free, here are a few solid options:

1. PDFsam Basic (Windows / macOS / Linux)
Open source, no watermarks, no limits, all local.

  • Install PDFsam Basic.
  • Use the “Rotate” module.
  • Pick the pages or page ranges (e.g., 3-5, 8) and the rotation angle.
  • Save as a new PDF.

It’s not as “visual” as PDF24’s thumbnail editor, but for multi‑page jobs it’s fast and predictable.

2. Using a real PDF reader:

  • Adobe Acrobat Reader (free) actually lets you temporarily rotate view, which is useless for saving, so I’d skip it for your case despite people always recommending it. You see rotated pages, then re‑open the file and… surprise, nothing saved.
  • Foxit PDF Reader + its free editor features can sometimes do page rotation + save, depending on version, but they’ve been pretty aggressive about paywalling stuff lately, so I don’t trust it long‑term.

3. macOS built‑in (Preview)
If you’re on Mac, you literally don’t need anything else.

  1. Open the PDF in Preview.
  2. In the sidebar, select the offending pages (Shift/Command click).
  3. Tools → Rotate Left / Rotate Right until they look correct.
  4. File → Save (or “Export as PDF” if you want a copy).

No watermarks, no upload, no nonsense.

4. Ghostscript / command line (Windows / macOS / Linux)
If you’re ok with CLI and want a “do it once, script forever” method:

gs -o output.pdf -sDEVICE=pdfwrite -c '<</Orientation 3>> setpagedevice' -f input.pdf

Orientation 3 is 180 degrees, 2 or 1 for different rotations. It’s more fiddly and not worth it if you just want a couple of pages fixed, but for repeated workflows it’s nice.

So:

  • Visual & free: PDFsam Basic (or Preview on Mac).
  • Scriptable / nerdy: Ghostscript.

Personally I’d skip online tools entirely for this; half of them mangle the file or sneak in compression even when you uncheck it, and the other half add “subtle” branding that somehow ends up on every page.