当前位置:首页 > PHP教程 > php图像处理 > 列表

php绘图之在图片上写中文和英文的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-08 22:39:45 浏览: 评论:0 

这篇文章主要介绍了php绘图之在图片上写中文和英文的方法,涉及GD库中imagestring和imagettftext方法的使用技巧,需要的朋友可以参考下

本文实例讲述了php绘图之在图片上写中文和英文的方法。分享给大家供大家参考。具体如下:

第一种方法,只能写英文,中文会出现乱码,代码如下:

  1. <?php 
  2. //1、创建画布 
  3. $im = imagecreatetruecolor(300,200);//新建一个真彩色图像,默认背景是黑色,返回图像标识符。另外还有一个函数 imagecreate 已经不推荐使用。 
  4. $red = imagecolorallocate($im,255,0,0); 
  5. //2、写字 
  6. $str = "hello,world"
  7. imagestring($im,5,30,60,$str,$red);//参数说明:5-指文字的大小。函数 imagestring 不能写中文 
  8. //3、输出图像 
  9. header("content-type: image/png"); 
  10. imagepng($im);//输出到页面。如果有第二个参数[,$filename],则表示保存图像 
  11. //4、销毁图像,释放内存 
  12. imagedestroy($im); 
  13. ?> 

第二种方法:写中文,代码如下:

  1. <?php 
  2. //1、创建画布 
  3. $im = imagecreatetruecolor(300,200);//新建一个真彩色图像,默认背景是黑色,返回图像标识符。另外还有一个函数 imagecreate 已经不推荐使用。 
  4. $red = imagecolorallocate($im,255,0,0); 
  5. //2、写字 
  6. $str = iconv("gb2312","utf-8","北京,你早!hello,world");//文件格式为gbk,而这里转为uft-8格式,才能正常输出,否则也为乱码。表示不明 
  7. imagettftext($im,12,rand(0,20),20,100,$red,"simhei.ttf",$str); 
  8. //3、输出图像 
  9. header("content-type: image/png"); 
  10. imagepng($im);//输出到页面。如果有第二个参数[,$filename],则表示保存图像 
  11. //4、销毁图像,释放内存 
  12. imagedestroy($im); 
  13. ?> 

imagettftext() 函数远强于imagestring() 函数,表现在这几个方面:

(1)imagettftext() 可以输出中文和英文,可以指定字体;imagestring() 只能输出英文,只能使用默认字体。

(2)imagettftext() 字体大小可以无限大;imagestring() 字体只有1~5号大小。

(3)imagettftext() 输出的字体可以变换角度;imagestring() 只能水平输出。

Tags: php绘图 php中文

分享到: