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

Function IMAGEDRAWLINE

Draws a single line defined by two sets of x and y coordinates on a image.

Example

imagedrawline(any name,number x1,number y1,number x2,number y2):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.  
x1 number  Yes The x coordinate for the start point of the line.  
y1 number  Yes The y coordinate for the start point of the line.  
x2 number  Yes The x coordinate for the end point of the line.  
y2 number  Yes The y coordinate for the end point of the line.