php8.5
Home/ Manual/ image / functions/ imagerectangle

imagerectangle

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Draw a rectangle

Description

imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): true

imagerectangle() creates a rectangle starting at the specified coordinates. 0, 0 is the top left corner of the image.

Parameters

x1

Upper left x coordinate.

y1

Upper left y coordinate.

x2

Bottom right x coordinate.

y2

Bottom right y coordinate.

color

Color

Return Values

Always

Changelog

VersionDescription

Examples

Simple imagerectangle() example

php
<?php
// Create a 200 x 200 image
$canvas = imagecreatetruecolor(200, 200);

// Allocate colors
$pink = imagecolorallocate($canvas, 255, 105, 180);
$white = imagecolorallocate($canvas, 255, 255, 255);
$green = imagecolorallocate($canvas, 132, 135, 28);

// Draw three rectangles each with its own color
imagerectangle($canvas, 50, 50, 150, 150, $pink);
imagerectangle($canvas, 45, 60, 120, 100, $white);
imagerectangle($canvas, 100, 120, 75, 160, $green);

// Output
header('Content-Type: image/jpeg');
imagejpeg($canvas);
?>

The above example will output something similar to: Output of example : Simple imagerectangle() example

Source: reference/image/functions/imagerectangle.xml · from the official PHP manual (php/doc-en)