在GD中输出汉字的函数
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-09 14:12:29 浏览: 评论:0
感谢sadly为我们写出了在GD中输出汉字的函数,我在使用中发现此版本输出的字符串必须为纯中文,不能夹杂英文,随修改了此bug,与大家分享。
- <?
- //Program writen by sadly www.phpfensi.com
- //modified by agun 2013/6/20
- function gb2utf8($gb)
- {
- if(!trim($gb))
- return $gb;
- $filename="gb2312.txt";
- $tmp=file($filename);
- $codetable=array();
- while(list($key,$value)=each($tmp))
- $codetable[hexdec(substr($value,0,6))]=substr($value,7,6);
- $ret="";
- $utf8="";
- while($gb)
- {
- if (ord(substr($gb,0,1))>127)
- {
- $this=substr($gb,0,2);
- $gb=substr($gb,2,strlen($gb));
- $utf8=u2utf8(hexdec($codetable[hexdec(bin2hex($this))-0x8080]));
- for($i=0;$i<strlen($utf8);$i+=3)
- $ret.=chr(substr($utf8,$i,3));
- }
- else
- {
- $ret.=substr($gb,0,1);
- $gb=substr($gb,1,strlen($gb));
- }
- }
- return $ret;
- }
- function u2utf8($c)
- {
- for($i=0;$i<count($c);$i++)
- $str="";
- if ($c < 0x80) {
- $str.=$c;
- }
- else if ($c < 0x800) {
- $str.=(0xC0 | $c>>6);
- $str.=(0x80 | $c & 0x3F);
- }
- else if ($c < 0x10000) {
- $str.=(0xE0 | $c>>12);
- $str.=(0x80 | $c>>6 & 0x3F);
- $str.=(0x80 | $c & 0x3F);
- }
- else if ($c < 0x200000) {
- $str.=(0xF0 | $c>>18);
- $str.=(0x80 | $c>>12 & 0x3F);
- $str.=(0x80 | $c>>6 & 0x3F);
- $str.=(0x80 | $c & 0x3F);
- }
- return $str;
- }
- Header("Content-type: image/gif");
- $im = imagecreate(300,150);
- $bkg = ImageColorAllocate($im, 0,0,0);
- $clr = ImageColorAllocate($im, 255,255,255);
- $fnt = "c:windowsfontssimsun.ttf";
- //include("gb2utf8.php");
- $str = gb2utf8("中国agun阿棍");
- ImageTTFText($im, 30, 0, 50,50, $clr, $fnt, $str);
- ImageGif($im);
- ImageDestroy($im);
- ?>
Tags: GD 汉字 函数
- 上一篇:一个取得文件扩展名的函数
- 下一篇:phpMailer 发送邮件
相关文章
- ·PHP基于GD2函数库实现验证码功能示例(2021-11-05)
- ·php中文汉字截取函数(2013-11-12)
- ·php中文汉字字符串的截取问号(2014-01-12)
- ·php把汉字转换成拼音代码(2014-08-18)
- ·php汉字转换拼音与拼音转换汉字程序(2014-09-09)
- ·PHP获得中文汉字拼音首字母例子(2014-09-21)
- ·php使用自定义函数实现汉字分割替换功能示例(2018-07-20)
- ·PHP中对汉字进行unicode编码和解码的实现方法(2018-07-31)
- ·php获取汉字首字母的函数(2020-06-01)
- ·PHP基于自定义函数实现的汉字转拼音功能实例(2021-08-11)
- ·PHP校验ISBN码的函数(2013-11-11)
- ·php中var_dump()函数的详解说明(2013-11-11)
- ·PHP不缓存数据头(2013-11-11)
- ·PHP采集程序中常用的函数(2013-11-11)
- ·PHP多重判断删除文件函数(2013-11-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)