Tagged Questions
1
vote
0answers
74 views
Python ReportLab - Clickable TOC with X of Y page numbering
Using ReportLab 2.7, Python 2.7:
I can create a pdf with clickable bookmarks in the table of contents (toc), or I can create a pdf with "x of y" page numbering, but the bookmarkpage(key) appears to ...
2
votes
1answer
197 views
How do you insert an image using Report Lab's canvas drawImage()?
I'm looking to expand the functionality of a tool using report lab's pdfgen which currently only draws strings using;
if json_data[definition["field"]] != "":
c.drawString(
...
1
vote
1answer
219 views
Reportlab pdfgen support for bold truetype fonts
I have been using reportlab pdfgen to create dynamic pdf documents for printing. It has been working very well for a number of years.
We are having a fund raising event coming up, and wish to ...
1
vote
1answer
195 views
ReportLab table with a column spanning all rows split across PDF page?
I am trying to layout a table in reportLab in the following format. The table is dynamic and can have many rows.
---------
| a | b |
|---| |
| a | |
|---| |
| a | |
---------
...
3
votes
1answer
483 views
Merge Existing PDF into new ReportLab PDF via flowables
I have a reportlab SimpleDocTemplate and returning it as a dynamic PDF. I am generating it's content based on some Django model metadata. Here's my template setup:
buff = StringIO()
doc = ...
0
votes
0answers
117 views
Getting Height of a table on reportlab canvas
I am drawing a table on reportlab canvas. While drawing, we need to pass bottom left coords of the table to the drawOn method. The height of my table is dynamic and therefore it overlaps on the ...
2
votes
1answer
1k views
Django get the static files URL in view
I'm using reportlab pdfgen to create a PDF. In the PDF there is an image created by drawImage. For this I either need the URL to an image or the path to an image in the view. I managed to build the ...
1
vote
0answers
118 views
Mixing single and multiple column styles dynamically and balancing multiple columns
I am typesetting a large document (>1,000 pages) using ReportLab and Python 2.7. I am planning to typeset it as two-columns per page, and have managed to get that more or less working.
def ...
1
vote
2answers
113 views
Throw blank even-numbered/left pages
I am trying to typeset a large document using ReportLab and Python 2.7.
It has a number of sections (about 6 in a 1,000 page document) and I would like each to start on odd-numbered/right-hand page. ...
1
vote
1answer
757 views
Python: Printing Html in PDF using Reportlab Canvas
For one of my python project I am using reportlab's canvas feature to generate pdf document.
Can anyone please help me to print small subset of html (p, strong, ul, ol, li, img, alignments) on ...
2
votes
1answer
206 views
Is there a workaround to get floating divs in Report Lab?
I generate PDFs with the xhtml2pdf Python package. The output is not optimal. I use floating divs in order to place images and text on the page. In HTML this works but after PDF rendering, images and ...
0
votes
0answers
361 views
reportlab.platypus - frame and background image made with Canvas
i'm using Reportlab to output an invoice on a simple Django app. I've already modified the code and here's the result:
def print_fatt_pdf(fattura, soggetto, buffer=None):
import time
from ...
0
votes
1answer
817 views
reportlab.platypus - rendering template with a right aligned image in the template header as background
i'm tryng to use Reportlab to output an invoice on a simple Django app. it seems quite difficult to do simple things like this. here's my code:
def print_pdf(fattura, soggetto, buffer=None):
import ...
2
votes
1answer
377 views
ReportLab LongTable LayoutError: too large on page
I'm using LongTables to show tabled data, but when row height more then page height it crashes with
File "c:\edat\19_with_edm\fiods\..\fiods\reporting\pdf_utils.py", line 1497, in build_table
...
2
votes
3answers
176 views
Need help to generate report in PDF or Doc using python
I want some help to generate a report in PDF/Doc(MS Word) format . I’m not able to find any module to generated report in doc, except “docx” which I’m not able to comprehend. Actually I’m actual task ...
1
vote
1answer
182 views
Are any Python PDF libraries able to access objects and groups in an existing PDF file?
I'm building a server application which accepts PDF files that artists have exported from Adobe Illustrator. Each file acts as an art "deck" containing several similar pieces of artwork, with each ...
3
votes
3answers
1k 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 ...
5
votes
1answer
963 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 ...
2
votes
0answers
223 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 ...
0
votes
1answer
280 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 ...
1
vote
1answer
787 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
146 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 ...
2
votes
3answers
1k 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 ...
5
votes
1answer
1k 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 ...
2
votes
2answers
443 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
362 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 ...
2
votes
3answers
1k 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:
...
3
votes
2answers
2k 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 ...
0
votes
2answers
642 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 ...
1
vote
3answers
310 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 ...
5
votes
3answers
2k 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 ...
0
votes
1answer
2k 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. ...
1
vote
2answers
296 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 ...
2
votes
1answer
674 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
4
votes
1answer
2k 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 ...
5
votes
3answers
1k 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 ...