read_full_content
Extracts all text data and embedded images from Excel files for comprehensive document analysis. Returns structured sheet content and images with cell positions.
Instructions
Read the FULL content of an Excel file including all text data AND embedded images.
This is the primary tool for comprehensive document analysis. Returns all sheet data as structured text followed by all extracted images with their cell positions. Ideal for analyzing documents where both text and diagrams/screenshots are essential, such as requirement definitions, reports, or design specs.
For very large files, data is paginated per sheet. Image extraction uses dual strategy (cell-mapping + archive) for maximum coverage.
@param file_path: Absolute path to the .xlsx file. @param max_rows_per_sheet: Max rows to read per sheet (default 500). @param max_image_width: Max width for image optimization (default 1024). @param max_image_height: Max height for image optimization (default 1024). @return: Mixed list of TextContent and ImageContent covering entire workbook.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| max_image_width | No | ||
| max_image_height | No | ||
| max_rows_per_sheet | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |