php gd 和文本

发布于 2024-09-13 18:37:29 字数 28 浏览 5 评论 0原文

是否可以在图像中保存不同样式和颜色的文本?

Is it possible the saved text with different styles and colors in the image?

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

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

发布评论

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

评论(1

最初的梦 2024-09-20 18:37:30

您可能想稍微改一下您的问题。但如果我理解正确的话,您想知道是否可以在一张图像中使用 GD 渲染不同样式的文本。

这可以通过将文本分成多个具有不同字体和颜色的 ImageFTText() 命令来实现。

不过,如果您希望一个单词具有不同的样式,那就会很棘手,因为像 字距调整(字符对之间的正确间距)开始发挥作用。您必须使用 ImageFTBBox() 来测量每个字符(或文本)的大小,才能知道从哪里继续下一个字符 - 即使这样也不能保证看起来很漂亮。

You may want to rephrase your question a bit. But if I understand you correctly, you want to know whether it is possible to render differently styled text using GD in one image.

This is possible by separating the text into multiple ImageFTText() commands with different fonts and colours.

It gets tricky, though, if you want one word to have different stylings, because then things like Kerning (the correct spacing between character pairs) comes into play. You would have to use ImageFTBBox() to measure the size of each character (or text) to know where to continue with the next one - and even that is not guaranteed to look pretty.

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