tags:

views:

81

answers:

2

I'm trying use tool from http://jan.kollhof.net/projects/svg/svgpdf/ but acrobat reader don't show svg content in pdf.

A: 

Maybe you can use svglib to convert your svg to pdf and then include it using pyPdf. Note that svglib seems to use reportlab so you can probably use their api to manipulate your file.

nicoe
Thank nicoe. But svglib don't help me.Added svg content is generally displayed in a PDF file?Maybe someone knows where i find for example pdf with embed svg.
Kmd
PROBLEM SOLVEDhttp://www.adobe.com/devnet/acrobat/pdfs/pdf_reference_1-7.pdf156. Beginning with Acrobat 8.1, Acrobat no long provides support for SVG slideshows.Acrobat 5.1 through 8.0 support SVG slideshows (MIME content type image/svg+xml).
Kmd
+1  A: 

You're probably better off first converting the SVG to PDF.

Apache Batik includes an SVG Rasterizer, which, despite its name, can convert SVG to PDF: http://xmlgraphics.apache.org/batik/tools/rasterizer.html

This is used by Apache FOP to convert Docbook documents that include SVG graphics to PDF.

echo-flow