PHP准确的字体宽度

时间:2009-11-20 00:27:15

标签: php image fonts font-size

我正在尝试生成文本图片。

所以我创建了一个新字体:

   $font = '../fonts/Arial.ttf';

然后我为文本添加了一些背景

   imagefilledrectangle($image, 0, 0, ?, 12, $green);

添加文字

   imagettftext($image, 12, 0, 0, 12, $white, $font, $text);

问题是现在我不知道如何获得大小为12的字体宽度。

感谢。

1 个答案:

答案 0 :(得分:4)