pdf_delete_page
Remove specific pages from PDF documents to eliminate unwanted content or streamline file structure for better organization and focused information delivery.
Instructions
Delete a page from a PDF.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| page_number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_number": {
"title": "Page Number",
"type": "integer"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path",
"page_number"
],
"type": "object"
}