I'm creating some SVGs in batches and need to convert those to a PDF document for printing. I've been trying to use svglib and its svg2rlg method but I've just discovered that it's absolutely appalling at preserving the vector graphics in my document. It can barely position text correctly.

My dynamically-generated SVG is well formed and I've tested svglib on the raw input to make sure it's not a problem I'm introducing.

So what are my options past svglib and ReportLab? It either has to be free or very cheap as we're already out of budget on the project this is part of. We can't afford the 1k/year fee for ReportLab Plus.

I'm using Python but at this stage, I'm happy as long as it runs on our Ubuntu server.

Edit: Tested Prince. Better but it's still ignoring half the document.

link|improve this question

70% accept rate
Could you use a combo of the following approaches stackoverflow.com/a/6599172/1104941 and blog.pythonlibrary.org/2012/01/07/… The latter uses reportlab but I'm wondering if you can get away without the Plus version given you're just generating pdfs. You may be able to go straight to pdf with Cairo but I can't say for sure hence the comment instead of an answer. – sgallen Jan 13 at 17:06
feedback

3 Answers

I use inkscape for this. In your django view do like:

from subprocess import Popen

x = Popen(['/usr/bin/inkscape', your_svg_input, \
    '--export-pdf=%s' % your_pdf_output])
try:
    waitForResponse(x)
except OSError, e:
    return False

def waitForResponse(x): 
    out, err = x.communicate() 
    if x.returncode < 0: 
        r = "Popen returncode: " + str(x.returncode) 
        raise OSError(r)

You may need to pass as parameters to inkscape all the font files you refer to in your .svg, so keep that in mind if your text does not appear correctly on the .pdf output.

link|improve this answer
feedback

CairoSVG is the one I am using.

link|improve this answer
Tested it now, but unfortunately it's just as feeble at rendering my SVGs. – Oli Jan 15 at 0:36
Are you sure that your SVG's are actually formatted correctly? Cairo's rendering is quite solid.. Also, I'm using WeasyPrint for PDF's, though it's still a bit incomplete, but works fine despite limitations... – plaes Jan 15 at 7:33
feedback

You could have a look at

http://mail.python.org/pipermail/python-list/2009-October/1221329.html

for loading your SVG as PIL iamge. From there you could convert it to any other image format.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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