pdf_split
Split PDF — Split a PDF by page range, into individual pages, by fixed chunk size, or into even/odd pages. [category: pdf]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Input PDF (max 25MB) | |
| mode | No | Split mode. 'range' extracts the pages listed in 'pages'; 'all' splits every page into its own file; 'chunks' splits every chunkSize pages; 'even'/'odd' keep only even/odd pages. | range |
| pages | No | Page range e.g. '1-3,5,7-9'. REQUIRED when mode=range (the default); ignored for other modes. | |
| chunkSize | No | Pages per chunk when mode=chunks. | |
| outputName | No | Optional base name for the output file(s). |