imagettf 空间不均匀的文本
<?php
imagettftext($im, 15, 0, 470, $m, $black, $font, "this is testing of all");
?>
当我运行这个函数时,我得到的图像空间不均匀。 像这样: 这是测试
<?php
imagettftext($im, 15, 0, 470, $m, $black, $font, "this is testing of all");
?>
When I run this function I get the image with uneven spaces.
like this:
this is testin g o fall
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个所谓的字距调整问题。 TrueType 字体包含有关某些字符对之间的间距的信息,以实现字母的自然流动。
根据我的经验,GD 的 TrueType 函数
imagettftext()
通常不使用 TrueType 字体中包含的字偶距信息,或者使用得不够好。首先尝试
imagefttext()
。 (注意ft
而不是ttf
)它使用 FreeType 库。如果这不能改善结果,您可能必须求助于 ImageMagick(如果您的服务器支持)。但首先尝试 Freetype 函数。
This is a so-called kerning problem. TrueType fonts contain information about the spacing between certain pairs of characters to achieve a natural flow of letters.
From my experience, GD's TrueType function
imagettftext()
often doesn't use the kerning information contained in TrueType fonts, or does not use them well enough.Try
imagefttext()
first. (notice theft
instead of thettf
) It makes use of the FreeType library.If that doesn't improve the result, you may have to resort to ImageMagick if your server supports it. But try the Freetype functions first.