php 获取一段文本显示的点阵宽度和高度
define("F_SIZE", 8);
define("F_FONT", "arial.ttf");
function get_bbox($text){
return imagettfbbox(F_SIZE, 0, F_FONT, $text);
}
function text_height ($text) {
$box = get_bbox($text);
$height = $box[3] - $box[5];
return $height;
}
function text_width ($text) {
$box = get_bbox($text);
$width = $box[4] - $box[6];
return $width;
}
以上就是PHP 获取一段文本显示的点阵宽度和高度的内容,更多相关内容请关注PHP中文网(www.php.cn)!











