解決GD中文亂碼問題_PHP教程

來源:互聯網
上載者:User
今天仔細研究了下GD的一些相關技術,順手也研究下GD中文亂碼的問題。

使用GD庫輸出中文字串,調用imagestring是沒有用的。需要使用imagettftext()函數。imagettftext函數的具體使用就參考手冊啦。

下面給個使用執行個體:


$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','面對對象')." www.phpobject.net";
imagettftext($pic,10,0,10,20,$white,$font,$str);


前面我給出一個簡單的GD浮水印執行個體,只舉例說明了使用圖片如何浮水印的,這裡給出一個文字浮水印的簡單代碼。


$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','面對對象')." 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);
?>


http://www.bkjia.com/PHPjc/317921.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/317921.htmlTechArticle今天仔細研究了下GD的一些相關技術,順手也研究下GD中文亂碼的問題。 使用GD庫輸出中文字串,調用imagestring是沒有用的。需要使用imag...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.