I\'m writing pdfs with reportlab inside a django view, they are very simple, the header, the contents and the footer.
I\'m trying to build PDF-documents on the server-side in a Django-Installation using reportlab. These documents should contain several graphs which are to be created wit开发者_如何转开发h matplotlib.
I\'ve searched around for drag-and-drop editors which act similarly to MSAccess report builder but generates Report Markup Language™. However, I could not find any existing products.
I\'ve a got a django app that currently generates pdfs using a canvas that the user can download. I create a StringIO buffer, do some stuff and then send call response.write.
I can\'t find any option, that would allow to set colspan for td el开发者_如何转开发ement in rml. Is that somehow possible?Gordon\'s suggestion of the blockSpan element worked for me. Here\'s an examp
Is it possible to开发者_StackOverflow社区 generate a PDF file using ReportLab in such a way that the front page (and possibly table of contents) are excluded from the page numbering done by Platypus?Y
I\'m building a pdf document wit开发者_运维技巧h reportlab, using the Paragraph class: doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
I\'m using reportlab to 开发者_开发百科create pdfs. When I try to set a font using the following method, I get a KeyError:
I use a table but, I draw in in a canvas to control the position of the flowables, this because I have a template in a pdf, an I merge with pyPDF.
I want to embed matplotlib charts into PDFs generated by ReportLab directly - i.e. 开发者_开发技巧not saving as a PNG first and then embedding the PNG into the PDF (i think I\'ll get better quality ou