php gd 和文本
是否可以在图像中保存不同样式和颜色的文本?
Is it possible the saved text with different styles and colors in the image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在图像中保存不同样式和颜色的文本?
Is it possible the saved text with different styles and colors in the image?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能想稍微改一下您的问题。但如果我理解正确的话,您想知道是否可以在一张图像中使用 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.