This example shows how fill an image in php gd.
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