Draws a rectangle.
image.drawRect( x=number, y=number, width=number, height=number, filled=boolean )
Returns: Image
Argument |
Description |
x
number,
required
|
The x coordinate of the rectangle.
|
y
number,
required
|
The y coordinate of the rectangle.
|
width
number,
required
|
The width of the rectangle.
|
height
number,
required
|
The height of the rectangle.
|
filled
boolean,
optional
|
Specify whether the rectangle is filled:
- true: The rectangle is filled with the specified drawing color.
- false (default): Only the outline of the rectangle is drawn.
|
Examples
img=imageNew("",200,200,"RGB","00fcfc");
img.DrawRect(45,50,75,125);
img.DrawRect(70,50,75,10);
cfimage(action="writeToBrowser",source=img);
See also