pdf_combine_pages_to_single
Combine multiple PDF pages into a single page with customizable layout options for document consolidation and organization.
Instructions
Combine multiple pages from a PDF into a single page with specified layout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| page_numbers | No | ||
| layout | No | vertical | |
| output_path | No |
Input Schema (JSON Schema)
{
"properties": {
"layout": {
"default": "vertical",
"title": "Layout",
"type": "string"
},
"output_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Path"
},
"page_numbers": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Page Numbers"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path"
],
"type": "object"
}