imageInfo
Extract metadata and details from images stored in Tencent Cloud Object Storage (COS) using the specified file path for efficient image management and processing.
Instructions
图片处理-获取图片信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectKey | Yes | 图片在存储桶里的路径 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"objectKey": {
"description": "图片在存储桶里的路径",
"type": "string"
}
},
"required": [
"objectKey"
],
"type": "object"
}