我使用 imagettfbbox() 来计算边界框的尺寸。
例如:
$box = imagettfbbox(72, 0, 'My Font', 'My Message');
$width = (abs($box[2] - $box[0])) / 72;
$height = (abs($box[5] - $box[3])) / 72;
无论如何,我可以将字母间距合并到我的消息中并将尺寸检索到边界框吗?
字母间距以点为单位,对吗?
提前致谢。
麦克风
我使用 imagettfbbox() 来计算边界框的尺寸。
例如:
$box = imagettfbbox(72, 0, 'My Font', 'My Message');
$width = (abs($box[2] - $box[0])) / 72;
$height = (abs($box[5] - $box[3])) / 72;
无论如何,我可以将字母间距合并到我的消息中并将尺寸检索到边界框吗?
字母间距以点为单位,对吗?
提前致谢。
麦克风