使用 python 和 pygame 加载 SVG 文件
可能的重复:
PyGame 应用程序中的 SVG 渲染
我可以将 inkscape 创建的 .svg 文件加载到通过 pygame 进行 python 操作?如果是这样,我该怎么做?
Possible Duplicate:
SVG rendering in a PyGame application
Can I load .svg files created by inkscape to python via pygame? And if so, how I can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能,PyGame 支持以下图像格式:
但是,您可以使用 开罗 RSVG 库。
PyGame 网站上有一些相关文档。
No you cannot, PyGame supports following image formats:
You can however rasterize that SVG using Cairo RSVG library.
There is some documentation for that on PyGame's web.