php png乱码的解决办法:首先找到并打开运行出错的PHP代码文件;然后把html代码,也就是“html,head,body”代码全部删除即可。
解决关于php GD中png图象显示乱码
问题:
代码:<?php
$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)这些代码全部删除,就可以了。