Lucee object methods reference

Object Method Image.drawDrawLines

Draws a sequence of connected lines defined by arrays of x and y coordinates.
Image.drawDrawLines(array xcoords,array ycoords,[boolean isPolygon,[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
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.