使用 PHP/PYTHON/其他编程语言发挥 Visual SVG 的威力
我和我的朋友想用 SVG 和 PHP 或 PYTHON
构建一些东西。
是否有任何集成/工作流程将编程语言与强大的可视化界面(例如 SVG)连接在一起?除了 SVG
之外,还有其他有前途的视觉方式吗?
Me and my friend want to build something with SVG and PHP or PYTHON
.
Is there any integration/ workflows that connect programming languages together with powerfull visual interfaces, such as SVG? Are there other promising visual ways than SVG
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为有几种方法可以使用 Python 语言动态操作 SVG。
首先,您可以使用 Apache Batik 库,它提供了基于 Java 技术构建的 SVG 的一流实现。您可以使用任何 JVM 语言针对 Batik API 进行开发。此外,您可以使用 Jython 进行脚本编写: http://xmlgraphics.apache.org/ batik/using/extending.html#interpreters
其次,您可以使用 PyGTK Webkit 绑定通过 Webkit 的 SVG 实现来操作 SVG 内容。请参阅此处了解如何设置 Webkit 和 PyGTK:http:// www.tuxradar.com/content/python-pygtk-webkit-20-mines
这两种方法都处于操作 SVG DOM 的级别,因此可用于添加动态行为。然而,如果您只想生成静态内容,那么事实上,任何可以生成 XML 的语言都适合。
I think there are a couple of ways you can manipulate SVG dynamically with the Python language.
First, you could use the Apache Batik library, which provides a first-class implementation of SVG built on Java technologies. You can use any JVM language to develop against the Batik API. Furthermore, you can use Jython for scripting: http://xmlgraphics.apache.org/batik/using/extending.html#interpreters
Second, you could use PyGTK Webkit bindings to manipulate SVG content using Webkit's implementation of SVG. See here for how to get set up with Webkit and PyGTK: http://www.tuxradar.com/content/python-pygtk-webkit-20-minutes
Both of these approaches would be at the level of manipulating the SVG DOM, and thus can be used to add dynamic behaviour. However, if you just want to generate static content, then indeed, any language that can generate XML would be appropriate.
尝试 pySVG。 SVG“格式”本质上是 XML,因此如果您自己编写所有标签,则可以使用任何 xml 库。
Try pySVG. SVG 'format' is essentially XML so you could use any xml library if you write all the tags yourself.