A library for generating PDF in Python.
1
vote
0answers
36 views
Arabic text is not properly wrapped in reportlab's Paragraph flowable
Let’s say I have this Arabic snippet:
إذا أخذنا بعين الإعتبار طبيعة تقلب المناخ و المتغيرات البينية السنوية و تلك على المدى الطويل إضافة إلى عدم دقة القياسات والحسابات المتبعة
In English this should ...
-1
votes
1answer
35 views
Generate pdf with unicode characters [closed]
I using python + reportlab for generating pdf. But here is some problem with unicode fonts.
I trying use FreeSerif http://en.wikipedia.org/wiki/FreeSerif but it didn't show hieroglyphics - ...
1
vote
1answer
14 views
Footer only on last data page in Reportlab
I am working on an invoice and I would like to add a footer on the last page only (which can also be the first page).
Since the data of the table is dynamic, I am not able to calculate the number of ...
0
votes
0answers
20 views
How to create a table using report lab that can change the number of rows dynamically
I am creating a PDF that has a table in it except the table rows will differ from PDF to PDF
table = Table(data, colWidths=[3.05 * cm, 4.5 * cm, 4 * cm,3* cm, 3 * cm])
...
0
votes
0answers
16 views
Merge existing PDF files into a single file, and add a clickable TOC [Reportlab, Python]
I'm trying to merge several existing PDF files into a single one.
The tricky part comes when trying to add a table of contents that link to the first page of every merged pdf file.
I tried to ...
1
vote
1answer
29 views
Django reportlab latin2 encoding
is there any option to convert latin2 letters in a proper way? I need polish letter to my school project. Here is some code how I generate pdf
#!/usr/bin/python
# -*- utf-8 -*-
from reportlab.pdfgen ...
1
vote
0answers
26 views
Text inside the table cell improperly aligned
I'm using xhtml2pdf (former pisa, or is it vice versa? :)) to generate PDF from the django template. The template is rendered ok, but PDF I get from that template is corrupted in a very weird manner: ...
0
votes
0answers
16 views
NameError: global name 'styles' is not defined
This part of my code Paragraph('Road',style["Normal"], bulletText=None) gives me this NameError: global name 'styles' is not defined.
The module that I have importeded is :
from reportlab.lib.styles ...
0
votes
0answers
28 views
using reportlab table creator I get an error saying Table takes no parameters
I am using the example on this site to create a table in a PDF file, using reportlab and I get a error saying
TypeError: object.__new__() takes no parameters
on the line that has this line of ...
2
votes
1answer
59 views
Generating Print Version of PDF with specified DPI in Reportlab
I am writing a program to generate PDF files using Python's Reportlab library. Basically I have two requirements:
Web version: RGB color, 150 dpi
Print Version: CMYK color, 300 dpi
So far I have ...
1
vote
1answer
27 views
ReportLab render right border for table cells?
There are LINEBELOW and LINEABOVE in the reportlab documentation.
But i can't find a way do define right or left borders (LINELEFT,LINERIGHT).
Any suggestion how to render cells with right border ...
0
votes
1answer
17 views
IOError on image in reportlab table only [closed]
I have a reportlab table that should show an image that is pulled from an url.
I get the URL like this:
imageData = urllib2.urlopen(url).read()
image = StringIO(imageData)
When I do this:
...
0
votes
2answers
28 views
Reportlab 2 or more pages per file
How can I generate a PDF with two or more pages with reportlab? I've been unable to find anything in the documentation.
1
vote
1answer
89 views
Embed .SVG files into PDF using reportlab
I have written a script in python that produces matplotlib graphs and puts them into a pdf report using reportlab.
I am having difficulty embedding SVG image files into my PDF file. I've had no ...
1
vote
0answers
28 views
How to insert a page into a story in ReportLab Python?
While compiling a pdf from pages, I'm creating chapter names at the end, on the fly. My biggest problem is that a Story is already compiled by then. So when I do something like this:
for chapter ...
2
votes
0answers
36 views
Use Django 1.5 StreamingHttpResponse to deliver reportlab pdf
just wondered if anyone have done pdf generation using reportlab and the new StreamingHttpResponse objects that are supported in Django 1.5;
...
1
vote
1answer
74 views
django: serve dynamic (reportlab) png to template
I've spent the day on this issue with no success so help would be appreciated.
I generate a graph using reportlab and successfully render it to the browser using this tutorial:
d = ...
1
vote
1answer
60 views
SVG to PDF using svglib
I am trying to convert SVG to PDF in python using svglib and reportlab.So,I installed both of these,and following is the example on their site and I ran it exactly as it is,like below.
>>> ...
1
vote
0answers
48 views
Reportlab myFirstPage override MyLaterPage
I'm beginner with reportlab and I've a strange issue when I build my pdf. MyFirstPage template overwrites myLaterPages.
def myFirstPage(canv, doc):
canv.saveState()
canv.line(left_margin, ...
2
votes
0answers
32 views
Reportlab printing defaults
I am using reportlab to create a pdf with some portait and some landscape pages. The pdf looks great on screen, but when printing it the default print settings are to shrink the pages, rather than ...
1
vote
0answers
16 views
Reportlab: linking from canvas to internal platypus tag
I can easily do links within the main body of my Platypus document, using and tags within paragraph objects.
I have a header that uses canvas, though (because it's a two-pass afterFlowable deal), ...
1
vote
0answers
75 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 ...
1
vote
0answers
52 views
Error while creating PDF using ReportLab in Python
Data:
['<p>Work! please work.img:0\xc3\x82\xc2\xa0Will you?img:1</p>img:2img:3\xc3\x82\xc2\xa0ascasdacasdadasdaca HAHAHAHAHA! BAND!\n', '\n', "<p>Random ...
1
vote
0answers
37 views
Reportlab spreadsheet table formula
I am a newie to python and Reportlab. Currently I am trying to create an invoice by using Reportlab spreadsheet tables. I have discovered the formulas: PreviousPagesColSum, CurrentPageColSum and ...
0
votes
1answer
88 views
Producing PDFs in landscape orientation with ReportLab
I am working on a Python script that produces a PDF report using ReportLab. I need to produce the pages in landscape orientation and I have already looked through the ReportLab manual but I can't find ...
2
votes
1answer
203 views
How do you change from Landscape to Portrait Layout in python ReportLab?
I have a newbie question (should be simple to answer) that has been bugging me for the past day or so and after pouring over all online posts related to reportlab still can't be figured out. All I am ...
2
votes
2answers
169 views
Reportlab Not Generating Charts in a Django App on Google App Engine
I have a django app running on google app engine. One function of the app is to produce charts based on data given to it while using the app. I used reportlab to produce the charts, and this worked ...
1
vote
2answers
152 views
Django reportlab insert pagebreak html-side
I'm trying to insert a pagebreak after a table in a pdf I'm generating with reportlab, I'm using the following function to generate the pdf:
def render_to_pdf(template_src, context_dict):
template ...
0
votes
1answer
31 views
ugettext_lazy doesn't work with reportlab's Table
When I try to use ugettext_lazy with reportlab's Table class, instead of displaying the default text when there is no translation, the output displays django.utils.functional.__proxy__ object at ...
0
votes
0answers
69 views
Adding bullet points to a dynamic pdf document using python
I need the ability to generate a pdf document with python that displays lists with bullet points. These lists depend on user input.
I have investigated using appy.pod. With this I am able to output ...
0
votes
1answer
116 views
How to use reportlab SimpleDocTemplate with GAE
I'm not able to output PDF with the following sample code
from reportlab.pdfgen import canvas
from reportlab.lib.pagesizes import letter
from reportlab.lib import colors
from reportlab.platypus ...
1
vote
0answers
118 views
Reportlab build table of tables doesn't repeat rows
I am new to reportlab, and I've been pleased so far, but I've come to a situation I don't know how to fix. I am trying to build a table with subtables, as I have rows that have different column ...
1
vote
1answer
59 views
How can I make the bullet appear directly next to the text of an indented list in the reportlab package for python?
I'm using reportlab 2.6's ListFlowable to make a bulleted list with colored circle bullets. However, I would like the bullet to appear next to the text, rather than aligned with the preceding, ...
1
vote
0answers
66 views
reportlab: flowables in flowable
I want to have a flowable which is just a box who has a fixed width and height but can take serveral flowables as its content. So the flowables in this box should think the end of the box is the end ...
2
votes
1answer
162 views
Reportlab text background size doesn't match font size
I'm trying to have a header with white text on a simple black bar (with content from the page, so doing an actual header is way complicated). The problem is that the background of the text doesn't ...
0
votes
1answer
48 views
How can I insert a pdf file as a figure inside of another pdf in python?
I'm trying to automatically generate some pdf format reports in Python. I have figures that I want in the reports, but the figures are currently saved as pdfs. Saving the figures as something else is ...
2
votes
1answer
232 views
Reportlab: header with data from page
I'm using the on page function and a page template to make headers for a subset of the pages in my document:
templates.append(PageTemplate(id='Overview', frames=frame, onPage=HeaderOverview))
The ...
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(
...
0
votes
1answer
70 views
reportlab save location
I am trying to save a PDF file generated by reportlab to a specific location. Is it possible? Code creates the pdf to its own directory.
def myFirstPage(canvas, doc):
canvas.saveState()
...
1
vote
1answer
313 views
Resize reportlab.platypus.Paragraph flowable?
I've got the following code that attempts to resize the font size of a reportlab Platypus flowable's text until it fits into the available height I have given it. But I'm finding that the Paragraph ...
1
vote
0answers
95 views
Simple bar chart, populating data with for loop
For example purposes I have a python application that takes in text and generates a list of the top 10 most common words, this part works fine however I would like to generate a pdf graph using ...
0
votes
1answer
93 views
Reportlab Wrapper
I'm looking for a Reportlab wrapper which does the heavy lifting for me.
I found this one, which looks promising.
It looks cumbersome to me to deal with the low-level api of Reportlab (especially ...
1
vote
1answer
187 views
ReportLab variable nextPageTemplate's
I am in the process of converting the database from pfaf.org (plant for a future) into a pdf book.
I have hit a bit of a stumbling block regarding pageTemplates.
Each plant may begin on a left or a ...
0
votes
1answer
90 views
Reportlab pdf encoding
I want to write some Turkish character to pdf with reportlab.
i used fallowing code to do this.
c = Canvas("test.pdf")
data="ğçİöşü"
p = Paragraph(data.decode('utf-8'), style=styNormal)
but it ...
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
0answers
166 views
How can I add transparent watermark to PDF printout using reportlab python library
I have to draw a watermark in my dynamically generated PDF Print.
I did it using the pyPdf library(By merging the Original PDF and the PDF with watermark).
http://wa5pb.freeshell.org/motd/?p=769
...
-4
votes
1answer
81 views
I cant figure out why i'm getting 'str' object has no attribute 'wrapOn' error on line 83 [closed]
I'm coding a small program to output an invoice pdf on python. I'm using reportlabs library. I defined a class PDFInvoice where the pdf is created with the given arguments.
Everything runs fine but ...
0
votes
1answer
288 views
How to create 2 pages from reportlab using one PageTemplate?
Hi all reportlab master,
I've search the web and also here in stackoverflow but can't find a similar situation on my problem I'm trying to solve during this Holiday vacation.
In django admin, I'm ...
0
votes
1answer
133 views
Using Reportlab Canvas- How to create an Option to print the pdf generated from the browser itself?
Here is the code which generates pdf for me using Reportlab.
Now, it just shows the pdf in the browser, and after including 'attachment' in the resonse.header ['Content-Disposition'], it downloads ...
4
votes
2answers
496 views
Insert image into Reportlab either from PIL image or StringIO
I'm trying to insert a barcode image into Reportlab. I know there are a lot of questions asked on this, but all of them assume that you already have the image file in the directory or on the ...





