I trying create empty white image with php, this s my code
$bg = imagecreatetruecolor(120, 20);
imagejpeg($bg,"test/myimg.jpg",100);
but this created black image and I want create white, please tell how to set image for example white color?
<?php
$img = imagecreatetruecolor(120, 20);
$bg = imagecolorallocate ( $img, 255, 255, 255 );
imagefilledrectangle($img,0,0,120,20,$bg);
imagejpeg($img,"myimg.jpg",100);
?>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With