<?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
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.