• 将文本转化成图片


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

      php文字转图片
      php文字转图片
    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.最后运行效果,文字就变为图片了。如图:

      php文字转图片
      php文字转图片
  • 相关阅读:
    inotify+rsync做实时同步
    JAVA序列化和反序列化
    初识iBatis
    《Spring in action》之高级装配
    《Spring in action》之装配Bean
    原根
    数论知识
    线性(欧拉)筛
    Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) E DNA Evolution
    Fibonacci
  • 原文地址:https://www.cnblogs.com/o-ye/p/6479650.html
Copyright © 2020-2023  润新知