ImageClearRect()

Clears the specified rectangle by filling it with the background color of the current drawing surface.

Requires Extension: Image extension

ImageClearRect( image=object, x=number, y=number, width=number, height=number );

Returns: void

Argument Description
image
object, required

The image on which this operation is performed.

Alias: name

x
number, required

The X coordinate of the rectangle to clear.

y
number, required

The Y coordinate of the rectangle to clear.

width
number, required

The width of the rectangle to clear.

height
number, required

The height of the rectangle to clear.

Examples

img=imageRead("https://avatars1.githubusercontent.com/u/10973141?s=280&v=4")
ImageClearRect(img,180,50,20,30);
cfimage(action="writeToBrowser", source=img);

See also