image.drawArc()
Draws a circular or elliptical arc.
image.drawArc( x=number, y=number, width=number, height=number, startAngle=number, arcAngle=number, filled=boolean )
Returns: Image
| Argument | Description |
|---|---|
|
x
number,
required
|
edit
The x coordinate of the upper-left corner of the arc. |
|
y
number,
required
|
edit
The y coordinate of the upper-left corner of the arc. |
|
width
number,
required
|
edit
The width of the arc. |
|
height
number,
required
|
edit
The height of the arc. |
|
startAngle
number,
required
|
edit
The beginning angle in degrees. |
|
arcAngle
number,
required
|
edit
The angular extent of the arc, relative to the start angle. |
|
filled
boolean,
optional
|
edit
Specify whether the arc is filled:
|
Examples
edit img=imageRead("https://avatars1.githubusercontent.com/u/10973141?s=280&v=4")
img.DrawArc(70,50,70,100,90,180,"yes");
cfimage(action="writeToBrowser", source=img);