highlight_form_field
Highlight a specific form field in a PDF by generating an image with the field outlined in a red box. This tool helps users easily identify and locate form fields within PDF documents for better visualization and processing.
Instructions
Generate an image with the specified form field highlighted with a red box
Args:
pdf_path: Path to the PDF file
field_name: Name of the form field to highlight
Returns:
Image of the page with the field highlighted
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field_name | Yes | ||
pdf_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"field_name": {
"title": "Field Name",
"type": "string"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path",
"field_name"
],
"title": "highlight_form_fieldArguments",
"type": "object"
}