存档

文章标签 ‘PNG’

php 输出汉字png GD显示中文

2011年11月26日 没有评论

php输出图片可以适用GD组件来进行。 输出英文字母使用 imagestring — 水平地画一行字符串。 <?php // 建立一幅 100X30 的图像 $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); ?> 输出中文的时候就不行了,下面的代码就只能输出英文。 <?php // 建立一幅 100X30 的...

分类: 技术 标签: ,