Mega Code Archive

 
Categories / Php / Graphics
 

Include color information

<?php     $image = imagecreate(400,300);     $gold = imagecolorallocate($image, 255, 240, 00);     imagepng($image);     imagedestroy($image); ?>