Tagged Questions
5
votes
1answer
387 views
ReportLab: How to align a textobject?
I have the following ReportLab code:
t = c.beginText()
t.setFont('Arial', 25)
t.setCharSpace(3)
t.setTextOrigin(159,782)
t.textLine("Some string")
c.drawText(t)
What I want ...
4
votes
2answers
700 views
Adding text over existing PDFs using reportlab
I'm interested in filling out existing PDF forms programatically. All I really need to do is pull information from user input and then place the appropriate text over an existing PDF in the ...
3
votes
2answers
603 views
Python Reportlab PDF - Centering Text on page
I am using ReportLab to generate a pdf dynamically with python.
I would like a line of text to be centered on a page. Here is the specific code I currently have, but do not know how to center the ...
3
votes
2answers
1k views
ReportLab LayoutError: too large on page
I'm doing my first program using ReportLab where I don't know in advance where the page breaks will fall and I'm having trouble. To keep things simple I'm using the SimpleDocTemplate. My flowables ...
3
votes
3answers
891 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 generated PDF file. Is ...
2
votes
0answers
72 views
Save or flush ReportLab canvas without closing
I have a ReportLab script that generates a large PDF file (thousands of pages). This is done in a simple for-loop that creates a page for each iteration.
However, because canvas.save() closes the ...
2
votes
2answers
208 views
Numbered paragraphs with reportlab
I'm trying to use reportlab, but I'm finding the user guide not clear enough.. (maybe it's just me)
I have the following code
for item in content:
text = item.name
p = ...
2
votes
1answer
227 views
Reportlab PDF version generation problems
I am using reportlab PDF package with platypus to generate some PDF files. On linux server and on windows box I have the same python application, same version of reportlab package (although slightly ...
1
vote
1answer
316 views
How to open pdf with Django ExtJs and ReportLab
Hi people I'm doing an Extjs application and I want to open a pdf with ReportLab when the user click on a button.
My script is:
xtype: 'button',
text: 'Print',
listeners: {
click: function(evt, ...
1
vote
1answer
87 views
How can I find out, if a page is full with reportlab PDF?
I am creating PDFs tables with Reportlib (with c.draw() ). I don“t know, when the page is full because of the dynamic content. How can I check out, if I am at the end of the page, so that I can add an ...
1
vote
3answers
413 views
Using python to convert PNG's into PDF's
I want to write a python script to convert PNG's into 2-page pdfs (i.e. 2 PNGs per PDF). The software needs to run on both a Mac and Windows 7.
My current solution is using ReportLab, but that ...
1
vote
2answers
422 views
Reportlab - how to introduce line break if the paragraph is too long for a line
I have a list of text to be added to a reportlab frame
style = getSampleStyleSheet()['Normal']
style.wordWrap = 'LTR'
style.leading = 12
for legend in legends:
...
1
vote
2answers
168 views
Is my approach correct to replicate this form with Reportlab?
I need to generate the form seen here using Python/reportlab.
http://www.flickr.com/photos/49740282@N06/4563137758/sizes/o/
I am attempting to do this by creating a custom flowable for the header at ...
1
vote
2answers
202 views
What program to write pdf including other pdf on Linux from Python?
On an Ubuntu server, I want to create pdfs which include other static pdfs. I have tried using ReportLab with pyPdf. Ideally I would use ReportLab to do the whole thing, but in order to import the ...
1
vote
1answer
464 views
how to make fillable forms with reportlab in python [closed]
can anyone please help me with creating forms in python using the reportlab lib.
i am totally new to this and i would appreciate sample code
thanks
0
votes
2answers
40 views
How to Repeat Table Column Headings over Page Breaks in PDF output from ReportLab
I'm using ReportLab to write tables in PDF documents and am very pleased with the results (despite not having a total grasp on flowables just yet).
However, I have not been able to figure out how to ...
0
votes
0answers
88 views
A multiline(paragraph) footer and header in reportlab
What is a best way to have a footer and header in reportlab, that not just a single line, that can be drawed with canvas.drawString in onPage function. Didn`t find a way to put something like ...
0
votes
1answer
91 views
from reportlab.platypus import ListFlowable, ListItem not working
I am a newbie to python. I have to create an ordered list in my pdf document using Reportlab. I found these two classes ListFlowable(), ListItem() in the user-guide of Reportlab to do the same. But ...
0
votes
2answers
436 views
CMYK overprinting (colour-separated PDF output) with Reportlab
is it possible to use CMYK overprinting without using the CMYKColorSep class, which always generates a new seperate color in the printer settings, i just want to use overprinting with the standard 4 ...
0
votes
1answer
1k views
Python, generating PDF using ReportLab.Platypus SimpleDocTemplate, date/time in header
I'm working on a project in Python/Django which uses ReportLab's SimpleDocTemplate to generate PDF documents.
All the documents generated have the current date/time printed in the top right corner. ...