pdf_extract_images
Extract all images from PDF documents to save them as individual image files for reuse in other applications or projects.
Instructions
Extract all images from a PDF.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| output_dir | No |
Input Schema (JSON Schema)
{
"properties": {
"output_dir": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Dir"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path"
],
"type": "object"
}