drawing_generateCanvas
Create a customizable drawing canvas by specifying width and height in pixels for use in AI-assisted painting projects.
Instructions
Generate a new drawing canvas with specified width and height.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | Height of the canvas in pixels | |
width | Yes | Width of the canvas in pixels |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"description": "Height of the canvas in pixels",
"type": "number"
},
"width": {
"description": "Width of the canvas in pixels",
"type": "number"
}
},
"required": [
"width",
"height"
],
"type": "object"
}