使用 PHP/PYTHON/其他编程语言发挥 Visual SVG 的威力

发布于 2024-10-27 22:18:23 字数 141 浏览 1 评论 0原文

我和我的朋友想用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何其悲哀 2024-11-03 22:18:23

我认为有几种方法可以使用 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.

塔塔猫 2024-11-03 22:18:23

尝试 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文