Lucee Function Reference
imagedrawlines()
Draws a sequence of connected lines defined by arrays of x and y coordinates.
Beispiel
imagedrawlines(any image,array xcoords,array ycoords,[boolean isPolygon,[boolean filled]]):void
Kategorie
image
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
image | 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: |
filled | boolean | No |
Specify whether the polygon is filled: |