The ImagickDraw::rectangle() function is an inbuilt function in Imagick library of PHP which is used to draw a rectangle.
Syntax:
bool ImagickDraw::rectangle( $x1, $y1, $x2, $y2 )
Parameters: This function accepts four parameters as mentioned above and described below:
- $x1: This parameter takes the value of x coordinate of the top left corner.
- $y1: This parameter takes the value of y coordinate of the top left corner.
- $x2: This parameter takes the value of x coordinate of the bottom right.
- $y2: This parameter takes the value of y coordinate of the bottom right.
Return Value: This function returns TRUE on success.
Below program illustrate ImagickDraw rectangle() function in PHP:
Program:
<?php
$draw = new \ImagickDraw();
$draw ->setStrokeColor( 'Green' );
$draw ->setFillColor( 'Red' );
$draw ->setStrokeWidth(7);
$draw ->rectangle(40, 30, 200, 260);
$image = new \Imagick();
$image ->newImage(300, 300, 'White' );
$image ->setImageFormat( "png" );
$image ->drawImage( $draw );
header( "Content-Type: image/png" );
echo $image ->getImageBlob();
?>
|
Output:

Reference: http://php.net/manual/en/imagickdraw.rectangle.php