pdf_split
Split PDF files into individual pages or specific page ranges to extract, organize, or share selected content from larger documents.
Instructions
Split a PDF into individual pages or page ranges.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| output_dir | No | ||
| page_ranges | No |
Input Schema (JSON Schema)
{
"properties": {
"output_dir": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Dir"
},
"page_ranges": {
"anyOf": [
{
"items": {
"additionalProperties": {
"type": "integer"
},
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Page Ranges"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path"
],
"type": "object"
}