Learn how to Rotate PDF Online for Free: The Best Tool & Methods
Created
March 27, 2025 09:47
-
-
Save aspose-com-gists/a9f6661266d4d7c78e17f96726f0f236 to your computer and use it in GitHub Desktop.
Rotate PDF Online for Free: The Best Tool & Methods
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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