get_pdf_page_info
Retrieve page dimensions, rotation, text details, image and link counts from a PDF.
Instructions
获取PDF指定页面的详细信息。
Args: file_path: PDF文件的完整路径 page: 页码(从1开始)
Returns: 包含以下信息的字典: - page_number: 页码 - width: 页面宽度(点) - height: 页面高度(点) - rotation: 旋转角度 - has_text: 是否包含文本 - text_length: 文本长度 - image_count: 图片数量 - link_count: 链接数量
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | ||
| file_path | Yes |