get_local_image_size
Retrieve the dimensions of a local image by providing its absolute file path, enabling quick access to width and height details.
Instructions
Get the size of a local image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | Yes | Options for retrieving local image size |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"additionalProperties": false,
"description": "Options for retrieving local image size",
"properties": {
"imagePath": {
"description": "Absolute path to the local image",
"type": "string"
}
},
"required": [
"imagePath"
],
"type": "object"
}
},
"required": [
"options"
],
"type": "object"
}