Draws a curved line. The curve is controlled by a single point.
image.drawQuadraticCurve( x1=number, y1=number, ctrlx=number, ctrly=number, x2=number, y2=number )
Returns: Image
Argument |
Description |
x1
number,
required
|
The x coordinate of the start point of the quadratic curve segment.
|
y1
number,
required
|
The y coordinate of the start point of the quadratic curve segment.
|
ctrlx
number,
required
|
The x coordinate of the first control point of the quadratic curve segment.
|
ctrly
number,
required
|
The y coordinate of the first control point of the quadratic curve segment.
|
x2
number,
required
|
The x coordinate of the end point of the quadratic curve segment.
|
y2
number,
required
|
The y coordinate of the end point of the quadratic curve segment.
|
Examples
img=imageNew("",100,100,"RGB","a29bfe");
img.DrawQuadraticCurve(0,40,50,0,88,80);
cfimage(action="writeToBrowser",source=img);
See also