get_image_size
Retrieve the dimensions (width and height) of an image directly from its URL for accurate sizing and processing in applications.
Instructions
Get the size of an image from URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | Yes | Options for retrieving image size |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"additionalProperties": false,
"description": "Options for retrieving image size",
"properties": {
"imageUrl": {
"description": "Url of the image to retrieve",
"type": "string"
}
},
"required": [
"imageUrl"
],
"type": "object"
}
},
"required": [
"options"
],
"type": "object"
}