image.drawRoundRect()

Draws a rectangle with rounded corners.

image.drawRoundRect( x=number, y=number, width=number, height=number, arcWidth=number, arcHeight=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.

arcWidth
number, required

The horizontal diameter of the arc at the four corners.

arcHeight
number, required

The vertical diameter of the arc at the four corners.

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","b71540");
	img.DrawRoundRect(55,45,75,65,75,25);
	cfimage(action="writeToBrowser",source=img);

See also