Lucee Function Reference

imagedrawline()

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

Example

imagedrawline(any image,number x1,number y1,number x2,number y2):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.  
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.