Tags · Functions · Objects
Lucee Function Reference
Choose a function:

Function IMAGEDRAWLINES

Draws a sequence of connected lines defined by arrays of x and y coordinates.

Example

imagedrawlines(any name,array xcoords,array ycoords,[boolean isPolygon,[boolean filled]]):void

Arguments

The arguments for this function are set. You can not use other arguments except the following ones.
Name Type Required Description
name any  Yes The image on which this operation is performed.  
xcoords array  Yes A array of x coordinates.  
ycoords array  Yes A array of y coordinates.  
isPolygon boolean  No Specify whether the lines form a polygon:
  • true: The lines are connected to form a polygon.
  • false (default): The lines do not form a polygon.  
  • filled boolean  No Specify whether the polygon is filled:
  • true: The polygon is filled with the specified drawing color.
  • false (default): Only the outline of the polygon is drawn.