I saved some plots from matplotlib into a pdf format because it seems to offer a better quality. How do I include the PDF image into a PDF document using ReportLab? The convenience method Image(filepath) does not work for this format.

Thank you.

link|improve this question
feedback

2 Answers

According to ReportLab's FAQ this is only possible with ReportLab PLUS:

Can I use vector graphics in my PDFs?

No, the Open Source package doesn't do this. PageCatcher (see the previous answer) allows you to easily incorporate any vector image by saving it as a PDF and then using it exactly as you would an image file, and Report Markup Language accepts PDF files along with JPG, GIF and PNG.

link|improve this answer
feedback

Use from reportlab.graphics import renderPDF

link|improve this answer
1  
This is incorrect. renderPDF takes the EXISTING document and generates a PDF. The exact opposite of what the poster wants. – Tyler Eaves Feb 21 '11 at 16:57
feedback

Your Answer

 
or
required, but never shown

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