| Name | Draw |
| Syntax | draw [id:<id>] [pixel/rectangle/oval/image:<image>] (width:<width>) (height:<height>) (filled) [x:<x>] [y:<y>] (color:<color>) |
| Short Description | Draws on an image. |
| Full Description | Draws a pixel, shape, or image onto an image.
"id:" - the id of the image to draw on, see Image. "x:" and "y:" - the position that should be drawn on, see Image positions. For pixels or shapes: "color:" - a ColorTag of the color to draw in. For non-pixel shapes: "width:" and "height:" - the size of the shape being drawn, required. "filled" - whether the shape should be filled or just a border. optional, defaults to false. And for images: "image:" - the image to draw, required. "width:" and "height:" - the size to rescale the image being drawn to, optional. |
| Related Tags | None
|
| Usage Example | |
| Usage Example | |
| Usage Example | |
| Group | image |
| Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/scripts/commands/core/DrawCommand.java#L16 |