程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php imagettftext 規定寬度內自動換行

php imagettftext 規定寬度內自動換行

編輯:關於PHP編程

[php]
function draw_txt_to($card,$pos,$string) 
    { 
          
        $font_color = imagecolorallocate($card, $pos['color'][0],$pos['color'][1],$pos['color'][2]); 
        $font_file = BASEPATH.'../'.cfg('ttf'); 
        $_string=''; 
        $__string=''; 
         
        for($i=0;$i<mb_strlen($string);$i++) 
        { 
            $box=imagettfbbox($pos['fontsize'],0,$font_file,$_string); 
            $_string_length=$box[2]-$box[0]; 
            $box=imagettfbbox($pos['fontsize'],0,$font_file,mb_substr($string,$i,1)); 
             
            if( $_string_length+$box[2]-$box[0]<$pos['width']) 
            { 
                $_string.=mb_substr($string,$i,1); 
            } 
            else 
            { 
                $__string.=$_string."\n"; 
                $_string=mb_substr($string,$i,1); 
            } 
        } 
        $__string.=$_string;  
        $box=imagettfbbox($pos['fontsize'],0,$font_file,mb_substr($__string,0,1)); 
        imagettftext( 
            $card, 
            $pos['fontsize'], 
            0, 
            $pos['left'], 
            $pos['top']+($box[3]-$box[7]), 
            $font_color, 
            $font_file, 
            $__string); 
         
         
    } 

function draw_txt_to($card,$pos,$string)
 {
  
  $font_color = imagecolorallocate($card, $pos['color'][0],$pos['color'][1],$pos['color'][2]);
  $font_file = BASEPATH.'../'.cfg('ttf');
  $_string='';
  $__string='';
  
  for($i=0;$i<mb_strlen($string);$i++)
  {
   $box=imagettfbbox($pos['fontsize'],0,$font_file,$_string);
   $_string_length=$box[2]-$box[0];
   $box=imagettfbbox($pos['fontsize'],0,$font_file,mb_substr($string,$i,1));
   
   if( $_string_length+$box[2]-$box[0]<$pos['width'])
   {
    $_string.=mb_substr($string,$i,1);
   }
   else
   {
    $__string.=$_string."\n";
    $_string=mb_substr($string,$i,1);
   }
  }
  $__string.=$_string;
  $box=imagettfbbox($pos['fontsize'],0,$font_file,mb_substr($__string,0,1));
  imagettftext(
   $card,
   $pos['fontsize'],
   0,www.2cto.com
   $pos['left'],
   $pos['top']+($box[3]-$box[7]),
   $font_color,
   $font_file,
   $__string);
  
  
 }

 


作者:jiaochangyun

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved