read_image
Extract PNG image metadata and content for analysis. Returns width, height, and MIME type along with the image itself, enabling direct interpretation.
Instructions
PNG 이미지를 읽어 메타데이터와 이미지 콘텐츠를 함께 돌려준다.
이 도구는 이미지를 요약하지 않는다. 반환된 이미지를 직접 보고 내용을 설명/요약하는 것은 호출자(당신)의 역할입니다.
Args: file_path: png 파일 경로.
Returns: list: [메타데이터(JSON), 이미지 콘텐츠] 두 항목. 메타데이터에는 width/height/mime_type이 담깁니다.
Raises: ToolFailure: PATH_NOT_FOUND / NOT_A_FILE / FILE_TOO_LARGE / UNSUPPORTED_EXTENSION.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | 읽을 .png 파일 경로 |