Lucee Function Reference

imagedrawoval()

Draws an oval.

Example

imagedrawoval(any image,number x,number y,number width,number height,[boolean filled]):void

Category

image

Arguments

The arguments for this function are set. You can not use other arguments except the following ones.
Name Type Required Description
image any  Yes The image on which this operation is performed.  
x number  Yes The x coordinate of the upper left corner of the oval to draw.  
y number  Yes The y coordinate of the upper left corner of the oval to draw.  
width number  Yes The width of the oval to draw.  
height number  Yes The height of the oval to draw.  
filled boolean  No Specify whether the oval is filled:
  • true: The oval is filled with the specified drawing color.
  • false (default): Only the outline of the oval is drawn.