Home Tutorial Php Phpgd PHP GD fill image

 
 

PHP GD fill image
Posted on: November 9, 2009 at 12:00 AM
This example shows how fill an image in php gd.

<?php

$im = imagecreatetruecolor(55, 30);

$white = imagecolorallocate($im, 255, 255, 255);

imagefilledrectangle($im, 4, 4, 50, 25, $white);

imagejpeg($im, 'imagefilledrectangle.jpg');

echo("Image filled rectangle created and saved successfully");

imagedestroy($im);

?>

After running the program you will get the following output

output: Image filled rectangle created and saved successfully

Related Tags for PHP GD fill image:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.