GD 能否使文本显得扭曲(使其看起来像稍微环绕曲线)?
我正在使用 PHP 的 GD 库在图像上放置一些文本。
背景图像是一个球。理想情况下,文本应稍微扭曲,看起来像是在曲面上。它应该在中间最大,并且在两端的比例稍小(文本事先也不知道,但最大长度为 15 个字符)。
这可能吗,还是我需要使用比 GD 更好的库?
谢谢
I am placing some text over an image using PHP's GD library.
The background image is a ball. Ideally, the text should warp slightly to look like it is on a curved surface. It should be largest in the middle, and scale slightly smaller on each end (text is not known before hand either, but there is a maximum length of 15 chars).
Is this possible, or do I need to use a better library than GD?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于图像效果,我建议你看看Imagick。尽管在 GD 中这是可能的,但您需要为此编写自己的数学算法。
For image effects, I suggest you look at Imagick. Although it's possible in GD, you need to write your own math algorithms for such.