PHP图像输出乱码,该如何解决
时间:2021-07-01 10:21:17
帮助过:39人阅读
PHP图像输出乱码
刚开始学PHP,这个代码为何输出乱码
$im = imagecreate(200,60);
$white = imagecolorallocate($im, 225, 66, 159);
imagegif($im);
?>
------解决方案--------------------贴个截图看看
------解决方案--------------------$im = imagecreate(200,60);
$white = imagecolorallocate($im, 225, 66, 159);
//
输出图像到浏览器
header ( 'Content-Type: image/gif' );
imagegif($im);
------解决方案--------------------去掉第一个
------解决方案--------------------header() 函数向客户端发送原始的 HTTP 报头。
认识到一点很重要,即必须在任何实际的输出到浏览器被发送之前调用 header() 函数
你可以百度下里面有很多设置的