pdf_rotate_page
Rotate specific pages in PDF documents to correct orientation or adjust layout. Specify page number and rotation angle to modify PDF page positioning.
Instructions
Rotate a page in a PDF.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| page_number | Yes | ||
| rotation | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_number": {
"title": "Page Number",
"type": "integer"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
},
"rotation": {
"title": "Rotation",
"type": "integer"
}
},
"required": [
"pdf_path",
"page_number",
"rotation"
],
"type": "object"
}