当前位置: 代码迷 >> PHP >> GD2绘制图形在浏览器中不能展示
  详细解决方案

GD2绘制图形在浏览器中不能展示

热度:82   发布时间:2016-04-28 21:24:23.0
GD2绘制图形在浏览器中不能显示
绘制了一个图形,如果是以ANSI格式编码可以在浏览器输出
但是以UTF-8格式编码就不能显示图形,这是什么原因?求指教!!!

代码如下:

<?php
$im = imagecreatetruecolor(50,25);

$red = imagecolorallocate($im,255,0,0);
$str = 'ABCDEFGHIJKMNPQRSTUVWXTZabcdefghijkmnpqrstuvwxtz23456789';
$str = substr(str_shuffle($str),0,4);
imagestring($im,5,8,5,$str,$red);

header('content-type:image/png');
imagepng($im);
imagedestroy($im);


?>
PHP GD2 浏览器 编码

------解决方案--------------------
这与index.html里有汉字,有什么关系
生成图片必须是单独文件
  相关解决方案