imagettftext(): calculate font size to ensure text

2019-01-19 06:48发布

I'm using imagettftext() to write dynamic text on an image and I want it to fit my image width.

How can I calculate the font size by the text lenght?

2条回答
兄弟一词,经得起流年.
2楼-- · 2019-01-19 07:22

You can calculate the bounding box of TTF text before outputting it with the imagettfbbox function. Unfortunately there is no direct way of scaling to fit a width, so you'll have to do it yourself.

One way of doing it is to pass the text with a default font size of, say 20, to imagettfbbox and retrieve the width from it. You can then calculate how much smaller or bigger the text should be to fit the size you want by calculating a scale factor:

scale = targetWidth / bboxWidth;

Then draw the text with the proper size:

fontSize = 20 * scale;

using the imagettftext function. Fonts don't scale 100% perfectly this way, but you'll get a very good approximation.

See the documentation of imagettfbox here.

查看更多
做个烂人
3楼-- · 2019-01-19 07:23
while (itsTooBigAccordingToimagettftext() && $fontSize > 0) {
    $fontSize--;
}
查看更多
登录 后发表回答