imagettf 空间不均匀的文本

发布于 2024-09-01 01:22:04 字数 285 浏览 3 评论 0原文

<?php
imagettftext($im, 15, 0, 470, $m, $black, $font, "this is testing of all");
?>

当我运行这个函数时,我得到的图像空间不均匀。 像这样: 这是测试

alt text http://fb.prideofhome.com/11111.JPG

<?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

alt text http://fb.prideofhome.com/11111.JPG

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没结果 2024-09-08 01:22:04

这是一个所谓的字距调整问题。 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 the ft instead of the ttf) 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文