ImageDrawoval()

Draws the outline of an oval. The result is a circle or ellipse that fits within the rectangle specified by the x, y, width, and height arguments

Usage

BOOLEAN = ImageDrawoval( name, x, y, width, height, filled )
Argument Summary
name the image object
x the left of the bounding oval
y the right of the bounding oval
width the width of the oval
height the height of the oval
filled a flag to determine if the oval is filled with the current color; default to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ImageDrawoval(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?, 
   filled=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageDrawoval( ArgumentCollection={
   name : ?, 
   x : ?, 
   y : ?, 
   width : ?, 
   height : ?, 
   filled : ?
} );