imagettfbbox()获取边界并合并字母间距

时间:2013-02-17 22:08:02

标签: php

我使用imagettfbbox()来计算边界框的尺寸。

例如:

$box = imagettfbbox(72, 0, 'My Font', 'My Message');
$width = (abs($box[2] - $box[0])) / 72;
$height = (abs($box[5] - $box[3])) / 72;

无论如何我可以在信息中加入字母间距并将尺寸检索到边界框吗?

字母间距是分数,对吗?

提前致谢。

麦克

0 个答案:

没有答案