$imageFill
Fill a portion of an image with a specified color.
Usage
$imageFill[color;x;y;width;height;opacity]
Parameter | Description | Required |
---|---|---|
color | The color to fill with. Can be a hex code (e.g., #FF0000 ) or a common color name (e.g., gray , black , red ). | Yes |
x | The x-coordinate of the top-left corner of the rectangle to fill. See Positioning for more details. | No |
y | The y-coordinate of the top-left corner of the rectangle to fill. See Positioning for more details. | No |
width | The width of the rectangle to fill. See Sizing for more details. | No |
height | The height of the rectangle to fill. See Sizing for more details. | No |
opacity | The 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]
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]