码迷,mamicode.com
首页 > 其他好文 > 详细

将文本转化成图片

时间:2017-02-28 17:38:32      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:album   content   iconv   dex   media   icon   dia   位置   hot   

  1. 首先要确定你的php是否开启了gd库扩展,只要在浏览器地址栏输入htpp://你的域名/phpinfo.php,回车,只要出现gd,就表示你的php环境支持了gd扩展。如果不支持,直接在php.ini里开启,去掉gd2前的;再重启apache就可以了。如图:

    技术分享
    技术分享
  2.  

    php代码如下:

    <?php 

    header("Content-type:text/html;charset=utf-8");

    header ( ‘Content-type: image/png‘ ); 

    $font_size = 18; //字体大小 14px

    $text = ‘有朋自远方来。不亦乐呼‘; 

    $font = ‘fonts/simsun.ttc‘; 

    $font  =   iconv("UTF-8","gb2312",$font);

    $fontarea = imagettfbbox($font_size,0,$font,$text); //确定会变化的字符串的位置

    $text_width = $fontarea[2]-$fontarea[0]+($font_size/3); //字符串文本框长度

    $text_height = $fontarea[1]-$fontarea[7]+($font_size/3); ////字符串文本框高度

    $im = imagecreate( $text_width , $text_height ); 

    $white = imagecolorallocate($im, 255,255,255); //定义透明色

    $red = imagecolorallocate ( $im , 255 , 0 , 0);  //文本色彩

    imagettftext ( $im , $font_size , 0 , 0, $text_height-($font_size/2.5) , $red , $font , $text ); 

    imagecolortransparent($im,$white);

    imagepng ( $im ); 

    imagedestroy ($im); 

    ?> 

     

    3.最后运行效果,文字就变为图片了。如图:

    技术分享
    技术分享

     

将文本转化成图片

标签:album   content   iconv   dex   media   icon   dia   位置   hot   

原文地址:http://www.cnblogs.com/o-ye/p/6479650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!