php imagettftext 规定宽度内自动换行_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
$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] {
$_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
$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]
{
$_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
推荐阅读
-
php imagettftext 规定宽度内自动换行_PHP教程
-
页面设计 中英文输出 自动换行_PHP教程
-
php文本转图片自动换行的方法_PHP教程
-
PHP生成excel时单元格内换行问题的解决方法_PHP教程
-
php imagettftext 规定宽度内自动换行_PHP教程
-
php imagettftext 规定宽度内自动换行
-
PHP生成excel时单元格内换行问题的解决方法_PHP教程
-
页面设计 中英文输出 自动换行_PHP教程
-
php中imagettfbbox和imagettftext 文字图片自动换行的方法
-
php中imagettfbbox和imagettftext 文字图片自动换行的方法