一切福田,不離方寸,從心而覓,感無不通。

GD 绘图输出中文

 

一:首先查看一下系统下面有没有字体支持

安装字体:sudo apt-get install msttcorefonts

使用中文字体:simhei.ttf 如果没有GOOGLE下载,放到/usr/share/fonts/truetype/目录下,使用的时候直接调用,也可以放到你的网站目录下。

<?php

$im = imagecreate(400,300);

$black = imagecolorallocate($im, 255, 0, 255);

$white = imagecolorallocate($im, 255, 255, 255);

$font = “/usr/share/fonts/truetype/msttcorefonts/simhei.ttf”;

$string = “this is my second try”;

$chinese = “我的好朋友是谁”;

//imagestring($im, 10, 10, 10, $string, $white);

//imagestring($im, 30, 30, 20, $chinese, 1);

imagettftext($im, 20, 0,10, 10, $white, $font, $chinese);

imageline($im, 10, 20, 100, 100, 1);

header(“Content-type: image/png”);

imagepng($im);

imagedestroy($im);

?>
转自:http://hi.baidu.com/bowengo/item/4e00acd95d2d15fd93a9743c