Maison > Article > développement back-end > PHP图像输出乱码,该如何解决
PHP图像输出乱码
刚开始学PHP,这个代码为何输出乱码
$im = imagecreate(200,60);
$white = imagecolorallocate($im, 225, 66, 159);
imagegif($im);
?>
------解决方案--------------------
贴个截图看看
------解决方案--------------------
$im = imagecreate(200,60);<br />$white = imagecolorallocate($im, 225, 66, 159);<br /> // 输出图像到浏览器<br />header ( 'Content-Type: image/gif' );<br />imagegif($im);