ImageDrawOval
Syntax
ImageDrawOval(name, x, y, width, height [, filled])Arguments
Name
Type
Required
Default
Description
Returns
Description
Example
See Also
Notes
Was this helpful?
ImageDrawOval(name, x, y, width, height [, filled])Was this helpful?
Was this helpful?
// Draw a filled oval
img = ImageDrawOval(myImage, 10, 20, 100, 50, true);
// Draw an outlined oval
img = ImageDrawOval(myImage, 10, 20, 100, 50);