Draw a filled rectangle in PHP
Description
The following code shows how to draw a filled rectangle.
Example
<?php/*from w w w . j ava 2 s .c o m*/
// Create a 55x30 image
$im = imagecreatetruecolor(55, 30);
$white = imagecolorallocate($im, 255, 255, 255);
// Draw a white rectangle
imagefilledrectangle($im, 4, 4, 50, 25, $white);
// Save the image
imagepng($im, './imagefilledrectangle.png');
imagedestroy($im);
?>