Tagged Questions

7
votes
4answers
193 views

Pure python solution to convert XHTML to PDF

Hello, I am after a pure Python solution (for the GAE) to convert webpages to pdf. I had a look at reportlab but the documentation focuses on generating pdfs from scratch, rather …
1
vote
2answers
105 views

Transparency in PNGs with reportlab 2.3

I have two PNGs that I am trying to combine into a PDF using ReportLab 2.3 on Python 2.5. When I use canvas.drawImage(ImageReader) to write either PNG onto the canvas and save, th …
0
votes
2answers
77 views

Unicode handling in ReportLab

I am trying to use ReportLab with Unicode characters, but it is not working. I tried tracing through the code till I reached the following line: class TTFont: # ... def sp …
1
vote
2answers
92 views

Reportlab page x of y NumberedCanvas and Images

I had been using the reportlab NumberedCanvas given at http://code.activestate.com/recipes/546511/ . However, when i try to build a PDF that contains Image flowables, the images do …
0
votes
1answer
183 views

How to create a bulleted list in ReportLab

How can I create a bulleted list in ReportLab? The documentation is frustratingly vague. I am trying: text = ur ''' <para bulletText="&bull;"> item 1 </para> <p …
0
votes
2answers
223 views

How to include page in PDF in PDF document in Python

I am using reportlab toolkit in Python to generate some reports in PDF format. I want to use some predefined parts of documents already published in PDF format to be included in ge …
0
votes
2answers
260 views

Showing page count with ReportLab

Hi everyone! I'm trying to add a simple "page x of y" to a report made with ReportLab.. I found this old post about it, but maybe six years later something more straightforward has …
1
vote
1answer
444 views

How to vertically align Paragraphs within a Table using Reportlab?

I'm using Reportlab to generate report cards. The report cards are basically one big Table object. Some of the content in the table cells needs to wrap, specifically titles and c …
5
votes
1answer
213 views

Creating a gradient fill in a PDF file using reportlab

Is it possible to create a gradient fill in a PDF using ReportLab (python)?
0
votes
3answers
468 views

extracting stream from pdf in python

How can I extract the part of this stream (the one named BLABLABLA) from the pdf file which contains it?? <</Contents 583 0 R/CropBox[0 0 595.22 842]/MediaBox[0 0 595.22 842 …
3
votes
2answers
388 views

Python ReportLab use of splitfirst/splitlast

I'm trying to use Python with ReportLab 2.2 to create a PDF report. According to the user guide, Special TableStyle Indeces [sic] In any style command the first row index …