我正在编写一个小应用程序来使用 python gtk3 与 WebKit 和 SchemDraw 绑定来生成电路图。我的意图是使用 SchemDraw 的 svg 输出(内部使用 matplotlib)并将其呈现在 WebView 小部件中。当我加载由 matplotlib(从文件和 StringIO)生成的 svg 时,WebView 窗口中缺少一些水平和垂直线元素。
我尝试在多个浏览器(Firefox、Google Chrome 和 Epiphany)中打开相同的 svg 文件,并且所有元素都正确呈现。我认为 Epiphany 将是一个很好的测试,因为它似乎使用了 WebView 实例,尽管是在 C 中。
gtk 程序:
import pgi as gi
gi.install_as_gi()
gi.require_version('Gtk', '3.0')
gi.require_version('WebKit', '3.0')
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import WebKit
print ("PyGtk v%s" % gi.__version__)
# Test webkit SVG rendering
window = Gtk.Window(title="Hello World")
webview1 = WebKit.WebView()
webview1.open('file:///redacted_path/example.svg')
window.add(webview1)
window.show_all()
window.connect("destroy", Gtk.main_quit)
Gtk.main()
呈现 example.svg 的代码(SchemDraw 网站上的示例):
import SchemDraw as schem
import SchemDraw.elements as e
d = schem.Drawing()
V1 = d.add(e.SOURCE_V, label='10V')
d.add(e.RES, d='right', label='100K$\Omega$')
d.add(e.CAP, d='down', botlabel='0.1$\mu$F')
d.add(e.LINE, to=V1.start)
d.add(e.GND)
d.draw()
d.save("example.svg")
我怀疑需要更多的 WebView 实例设置才能使其工作类似于我测试过的浏览器,但我不确定如何在此处继续。