imagefilledrectangle() function in PHP

The imagefilledrectangle() function draws a filled rectangle.

Syntax

imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color )

Parameters

  • image 
    Create a blank image with imagecreatetruecolor().

  • x1
    x-coordinate for point 1.

  • y1 
    y-coordinate for point 1.

  • x2
     x-coordinate for point 2.

  • y2 
    y-coordinate for point 2.

  • color 
    The fill color.

Return

The imagefilledrectangle() function returns TRUE on success or FALSE on failure.

Example

The following is an example:

Output

The following is the output:

Updated on: 2019-12-31T06:20:11+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements