php png乱码的处理办法:起首找到并翻开运转失足的PHP代码文件;然后把html代码,也就是“html,head,body”代码悉数删除即可。
引荐:《PHP视频教程》
处理关于php GD中png图象显现乱码
问题:
代码:
$im = imagecreate(100, 30);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);
imagestring($im, 5, 0, 0, "Hello world!", $textcolor);
header("Content-type: image/png");
imagepng($im);
?>
运转效果:
Fatal error: Call to undefined function imagecreate() in D:/wamp/www/index.php on line 2
处理方案:
把html代码(html,head,body)这些代码悉数删除,就能够了。
以上就是怎样处理php png乱码问题的细致内容,更多请关注ki4网别的相干文章!
收藏 | 0