vote up 0 vote down star

I'm using Pisa/XHTML2PDF to generate PDFs on the fly in Django. Unfortunately, I need to include SVG images as well, which I don't believe is an easy task.

What's the best way to go about either a) converting the SVGs to PNG / JPG (in Python) or b) including SVGs in the PDF export from Pisa?

flag

1 Answer

vote up 2 vote down check

There's the Java based Apache Batik SVG toolkit.

In a similar question regarding C# it was proposed using the command line version of Inkscape for this.

For Python, here's a useful suggestion from this discussion thread:

import rsvg
h = rsvg.Handle('svg-file.svg')
pixbuf = h.get_pixbuf()
pixbuf.save('foobar.png', 'png')
link|flag
Ah, that would be awesome, but I have no idea how to get rsvg. It appears from a quick Google search others have similar problems 'getting' rsvg. Is this a Python 2.6 only thing? – Nick Sergeant Apr 24 at 22:00
1  
Rsvg (en.wikipedia.org/wiki/Librsvg) is part of the GNOME project. Here a link (mwusers.com/forums/showthread.php?p=27924) to a discussion about installing it on Windows. – Yevgeny Doctor Apr 24 at 22:31
I'm actually on Ubuntu, and am having a pretty tough time installing on 8.10. It appears I have to install python-gnome2-desktop, but I'm not sure. I opened a SO post here: stackoverflow.com/questions/787812/… – Nick Sergeant Apr 24 at 22:33
Ah, okay, I got rsvg working, but here's what I get when I try to save: AttributeError: 'gtk.gdk.Pixbuf' object has no attribute 'save' – Nick Sergeant Apr 25 at 0:10
1  
Here's what Google has to say about it: "You've got an old version of PyGTK-2. save() was added on 2002-11-16 by James, so it seems to have been included in 1.99.14." mail-archive.com/pygtk@daa.com.au/msg05850.html/… – Yevgeny Doctor Apr 25 at 0:31
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.