render_pdf_page
Generate a high-quality image of a specified PDF page by providing the file path, page number, and zoom factor. Ideal for previewing or extracting PDF content without annotations or highlights.
Instructions
Generate an image of a PDF page without any highlighting
Args:
pdf_path: Path to the PDF file
page_num: Page number to render (0-indexed)
zoom: Zoom factor for rendering (higher values for better quality)
Returns:
Image of the specified page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_num | No | ||
pdf_path | Yes | ||
zoom | No |
Input Schema (JSON Schema)
{
"properties": {
"page_num": {
"default": 0,
"title": "Page Num",
"type": "integer"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
},
"zoom": {
"default": 2,
"title": "Zoom",
"type": "number"
}
},
"required": [
"pdf_path"
],
"title": "render_pdf_pageArguments",
"type": "object"
}