8

因为我可以像这样在 PyQt 中轻松地做到这一点:

img = '''<?xml version="1.0" encoding="UTF-8"?>
<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg">
 <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
 <g>
  <title>Layer 1</title>
   <circle stroke-width="3" stroke="#1a1a1a" fill="#dfdbd2" r="16" cy="25" cx="25"/>
   <path stroke-width="0" fill="#1a1a1a" d="m25,9a16,16 0 0 0 0,32l0,-1.5a18,18 0 0 0 0,-29l0,-1.5z"/>
 </g>
</svg>'''
image = QtCore.QByteArray(img)
self.svgwidget.load(image)

我怎样才能在 Gtk 中做到这一点?有任何想法吗?:) 提前致谢!

4

2 回答 2

15
stream = Gio.MemoryInputStream.new_from_bytes(GLib.Bytes.new(img))
pixbuf = GdkPixbuf.Pixbuf.new_from_stream(stream, None)
self.svgwidget = Gtk.Image.new_from_pixbuf(pixbuf)

或者,如果您不介意额外的依赖并希望在加载 SVG 后对 SVG 做一些花哨的事情,请使用 rsvg 库:

svg = Rsvg.Handle.new_from_data(img)
pixbuf = svg.get_pixbuf()
svgwidget = Gtk.Image.new_from_pixbuf(pixbuf)
于 2013-10-19T03:59:42.243 回答
14

对于任何想要使用 Gtk 3 和 Python 加载和缩放 SVG 图像的人(同时保持 SVG 图像质量!):

from gi.repository import Gtk, GdkPixbuf

path = "/path/to/image.svg"
width = -1
height = 128
preserve_aspect_ratio = True

pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_scale(path, width, height, preserve_aspect_ratio)
image = Gtk.Image()
image.set_from_pixbuf(pixbuf)

另请参阅https://developer.gnome.org/gdk-pixbuf/stable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file-at-scale

于 2015-03-18T09:18:15.327 回答