ImgDrawEllipse |
Top Previous Next |
Prototype
ImgDrawEllipse(intImageHandle,intX, intY, intWidth, intHeight, intColor, boolFilled)
Description
Draw an ellipse of specified size and color in specified position.
Parameters
intImageHandle: integer value corresponding to the image handle.
intX: integer value, the position from left side where to place the ellipse
intY: integer value, the position from top side where to place the ellipse
intWidth: integer value, the width of ellipse
intHeight: integer value, the height of ellipse
intColor: integer value, the rectangle color value
boolFilled: boolean value, flag allowing rectangle filling
Returned value
None.
Notes
To draw a circle use same width and height.
Example
// Draw an empty black ellipse ImgDrawEllipse(_CurrentImage, 100, 200, 150, 75, 0, False); |