|
使用GD庫(kù)輸出中文字符串,調(diào)用imagestring是沒(méi)有用的。需要使用imagettftext()函數(shù)。imagettftext函數(shù)的具體使用就參考手冊(cè)啦。
下面給個(gè)使用實(shí)例:
$pic=imagecreate(250,30);
$black=imagecolorallocate($pic,0,0,0);
$white=imagecolorallocate($pic,255,255,255);
$font="C://WINDOWS//Fonts//simhei.ttf"; //這里的路進(jìn)需要注意下,必須是字符的路徑
$str ='php'.iconv('gb2312','utf-8','面對(duì)對(duì)象')." www.phpobject.NET";
imagettftext($pic,10,0,10,20,$white,$font,$str);
前面我給出一個(gè)簡(jiǎn)單的GD水印實(shí)例,只舉例說(shuō)明了使用圖片如何水印的,這里給出一個(gè)文字水印的簡(jiǎn)單代碼。
<?php
$pic=imagecreate(250,30);
$black=imagecolorallocate($pic,0,0,0);
$white=imagecolorallocate($pic,255,255,255);
$font="C://WINDOWS//Fonts//simhei.ttf";
$str ='php'.iconv('gb2312','utf-8','面對(duì)對(duì)象')." www.phpobject.NET";
imagettftext($pic,10,0,10,20,$white,$font,$str);
header("Content-type: image/jpeg");
$filename='../src/images/photo.jpg';
$im=imagecreatefromjpeg($filename);
imagecopymerge($im,$pic,0,0,0,0,250,30,50);
imagejpeg($im);
?>
php技術(shù):解決GD中文亂碼問(wèn)題,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。