get_image_info
Extract detailed metadata from image files, including format, dimensions, and other attributes, using file path or raw data input with the Image Converter MCP Server.
Instructions
获取图片文件信息
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image_data | No | 图片数据(Buffer或base64字符串,与image_path二选一) | |
| image_path | No | 图片文件路径(与image_data二选一) |
Input Schema (JSON Schema)
{
"properties": {
"image_data": {
"description": "图片数据(Buffer或base64字符串,与image_path二选一)",
"type": "string"
},
"image_path": {
"description": "图片文件路径(与image_data二选一)",
"type": "string"
}
},
"type": "object"
}