//定義輸出為圖像類型
header("content-type:image/gif");
//新建圖象
$pic=imagecreate(240,30);
//定義黑白顏色
$black=imagecolorallocate($pic,0,0,0);
$white=imagecolorallocate($pic,255,255,255);
//定義字體
$font="c://WIN2000//fonts//simhei.ttf";
//定義輸出字體串
$str = chr(0xE8).chr(0xB5).chr(0x9B).chr(0xE8).chr(0xBF).chr(0xAA).chr(0xE7).chr(0xBD).chr(0x91)." http://www.itbbs.cn";
//寫 TTF 文字到圖中
imagettftext($pic,12,0,10,20,$white,$font,$str);
//建立 GIF 圖型
imagegif($pic);
//結束圖形,釋放內存空間
imagedestroy($pic);
?>