$imageFill

Fill a portion of an image with a specified color.

Usage

$imageFill[color;x;y;width;height;opacity]
ParameterDescriptionRequired
colorThe color to fill with. Can be a hex code (e.g., #FF0000) or a common color name (e.g., gray, black, red).Yes
xThe x-coordinate of the top-left corner of the rectangle to fill. See Positioning for more details.No
yThe y-coordinate of the top-left corner of the rectangle to fill. See Positioning for more details.No
widthThe width of the rectangle to fill. See Sizing for more details.No
heightThe height of the rectangle to fill. See Sizing for more details.No
opacityThe opacity of the fill color (0-1, where 0 is fully transparent and 1 is fully opaque). Defaults to 1 if omitted.No

Examples

Example 1: Fill the entire image with gray.

!!exec $imageCreate[300;300]
$imageFill[gray]
$image[$imageOutput]
Member04/04/2025
!!exec $imageCreate[300;300]
$imageFill[gray]
$image[$imageOutput]

Custom Command Bot 04/04/2025

Example 2: Fill a 50x50 rectangle at (100, 100) with red.

!!exec $imageCreate[300;300]
$imageFill[gray]
$imageFill[red;100;100;50;50]
$image[$imageOutput]
Member04/04/2025
!!exec $imageCreate[300;300]
$imageFill[gray]
$imageFill[red;100;100;50;50]
$image[$imageOutput]

Custom Command Bot 04/04/2025