如何使用 python 将 SVG 图像转换为 SDL 表面或 RGBA 像素数组?
我猜这必须借助某种框架来完成。 Google 将 libCairo 作为最常见的结果,但这有太多的依赖项。
我的意思是可以在 Win/Lin/OSX 上运行、非 GPL、Python 兼容、可自由重新分发的东西。大小最好是几百KB。
事实是,它甚至不必支持完整的 SVG 规范。只是线条、形状、渐变填充和模糊。
或者,是否有更容易使用的矢量格式?
I'm guessing it has to be done with the aid of some sort of framework. Google gives libCairo as the most common result, but that is way too many dependencies.
I mean something that would work on Win/Lin/OSX, be non-GPL, python-compatible, freely re-distributable. And preferably a few hundred KB in size.
Thing is, it doesn't even have to support the full SVG spec. Just lines, shapes, gradient fills and blur.
Alternatively, is there any vector format that could be more easily used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 http://www.cairgraphics.org/pyrsvg/ 中的 python-rsvg
依赖项太多?真的吗? http://www.cairgraphics.org/download/ 具有 Windows 二进制文件。它取决于
libpng
和zlib
。但不知道如何建立 Python 绑定。如果绑定太难,您可以直接使用rsvg file.svg output.png
。您可以尝试在 PyPi 中搜索“svg”: http:// /pypi.python.org/pypi?%3Aaction=search&term=svg&submit=search 。那里有一个用于 OpenGL 的 SVG 加载器。
Try python-rsvg from http://www.cairographics.org/pyrsvg/
Too many dependencies? Really? http://www.cairographics.org/download/ has Windows binaries. It depends on
libpng
andzlib
. Don't know about getting the Python bindings up though. If the bindings are too hard, you could just shell out torsvg file.svg output.png
.You might try searching PyPi for 'svg': http://pypi.python.org/pypi?%3Aaction=search&term=svg&submit=search . There is a SVG loader for OpenGL in there somewhere.