1 2 3 4 5 6 7 8
<?php $img = imagecreate(2048, 1024); $color = imagecolorallocate($img, 255, 0, 0); header("Content-type: image/jpeg"); imagejpeg($img); imagedestroy($img);