支持文本路径的文本渲染库
我需要一个良好、可靠的库或工具链,用于以编程方式将具有不同大小、字体、粗细等的文本渲染为 png。它还需要能够以弧线或路径渲染文本。我希望它能够很快,因为我会像在服务器上运行它一样。
我尝试过使用 SVG 和 librsvg,但这不会渲染
元素。
我已经尝试过 pycairo,但同样,文本到路径效果不佳,并且在 cairo 文档中的所有地方都提到文本到路径是一个“玩具”,不应该用于严肃的应用。
Python 绑定是最好的,因为服务器运行 python。但我会接受任何建议。
I need a good, reliable library or toolchain for programatically rendering text to png, with different sizes, fonts, weights, etc. It also needs to be able to render text in an arc or to a path. I would like it to be fast, because I'd be running it as on a server.
I've tried using SVG and librsvg
, but that doesn't render <textPath>
elements.
I've tried pycairo
, but again, the text to path doesn't work great, and everywhere in the cairo documentation it mentions that text-to-path is a "toy" and shouldn't be used for serious applications.
Python bindings would be best, because the server runs python. But I'll take any suggestion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Qt 有一个 SVG 模块,我相信它支持 textPath 元素。
http://doc.trolltech.com/4.1/qtsvg.html
Qt has a SVG module, i believe it supports the textPath element.
http://doc.trolltech.com/4.1/qtsvg.html