Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created March 27, 2025 09:47
Show Gist options
  • Save aspose-com-gists/a9f6661266d4d7c78e17f96726f0f236 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/a9f6661266d4d7c78e17f96726f0f236 to your computer and use it in GitHub Desktop.
Rotate PDF Online for Free: The Best Tool & Methods
using Aspose.Pdf;
// Load the PDF document
Document pdfDocument = new Document("input.pdf");
// Rotate the first page by 90 degrees
pdfDocument.Pages[1].Rotate = Rotation.on90;
// Save the updated PDF document
pdfDocument.Save("output.pdf");
// Open document
Document pdfDocument = new Document("input.pdf");
// Rotate all the page by 90 degrees
for (Page page : pdfDocument.getPages())
{
// Setting Rotation angle of page
page.setRotate(Rotation.on90);
}
// Save output file
pdfDocument.save("output.pdf");
import aspose.pdf as ap
# Load the PDF
doc = ap.Document("input.pdf")
# Rotate all the pages
for page in doc.pages:
# Set rotation angle for content
page.rotate = ap.Rotation.ON90
# Save rotated PDF file
doc.save("rotated.pdf")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment