Tagged Questions

A library for generating PDF in Python.

learn more… | top users | synonyms

11
votes
4answers
2k views

Pure python solution to convert XHTML to PDF

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 than converting from HTML. ...
8
votes
1answer
872 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)?
5
votes
2answers
86 views

Convert SVG to PDF (svglib + reportlab not good enough)

I'm creating some SVGs in batches and need to convert those to a PDF document for printing. I've been trying to use svglib and its svg2rlg method but I've just discovered that it's absolutely ...
5
votes
3answers
357 views

How do I create a dynamic job ticket for Xerox printers

I am programmatically creating PDF files in Python and Reportlab, each containing several thousand documents, each document with a variable amount of pages. My problem is that I need to instruct the ...
5
votes
1answer
286 views

Using reportlab to build PDF with vector-based graphs generated by matplotlib

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 with matplotlib. I already ...
5
votes
1answer
357 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 ...
5
votes
1answer
414 views

Can we create interactive PDF forms using reportlab?

Can we create interactive PDF forms using reportlab? That is, a form that takes in data from readers and save them into the database.
5
votes
3answers
1k 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 may be set to one of ...
4
votes
2answers
403 views

Reportlab : How to switch between portrait and landscape?

I am using reportlab to generate a pdf report automatically from dynamic data. As the content sometimes is too large to be displayed in portrait, I am trying to switch to landscape for large content. ...
4
votes
2answers
333 views

Is there a matplotlib flowable for ReportLab?

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 output). Does ...
4
votes
2answers
559 views

PDF image in PDF document using ReportLab (Python)

I saved some plots from matplotlib into a pdf format because it seems to offer a better quality. How do I include the PDF image into a PDF document using ReportLab? The convenience method ...
4
votes
2answers
671 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 ...
4
votes
3answers
1k views

Generating & Merging PDF Files in Python

I want to automatically generate booking confirmation PDF files in Python. Most of the content will be static (i.e. logos, booking terms, phone numbers), with a few dynamic bits (dates, costs, etc). ...
3
votes
2answers
263 views

openerp report seems to cache image data

I've the following rml in my sale order template: <section> [[ repeatIn(o.order_line, 'l') ]] <blockTable colWidths="250.0,92.0,21.0,80.0,85.0" style="T&#xE1;bl&#xE1;zat2"> ...
3
votes
2answers
226 views

how to group objects in reportlab, so that they stay together across new pages

I'm generating some pdf files using reportlab. I have a certain section that is repeated. It contains of a header and a table: Story.append(Paragraph(header_string, styleH)) ...
3
votes
3answers
780 views

How to open a generated PDF file in browser?

I have written a Pdf merger which merges an original file with a watermark. What I want to do now is to open 'document-output.pdf' file in the browser by a Django view. I already checked Django's ...
3
votes
2answers
553 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
1answer
186 views

Python - Reportlab: Error using custom font

Im using the reportlab framework for creating pdf's. I'm also using a custom font in my pdf's called '3of9'. Now, sometimes I'm getting the following error: IOError: Cannot open resource ...
3
votes
2answers
2k views

ReportLab and Python Imaging Library images from memory issue

I've run into an issue I can't seem to figure out with PIL and reportlab. Specifically, I would like to use drawImage on a canvas in reportlab using a PIL Image object. In the past I've inserted ...
3
votes
2answers
1k views

Word wrap on report lab PDF table

I'm using the Table of Report Lab library to print a table on a PDF report. I would like to know if it's possible to configure the table to perform an automatic wrapping of the content of a cell. ...
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
2answers
858 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, the transparency comes ...
3
votes
1answer
517 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 not show, although ...
3
votes
3answers
860 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
1answer
32 views

How can I improve ReportLab image quality?

I'm building a label printer. It consists of a logo and some text, not tough. I have already spent 3 days trying to get the original SVG logo to draw to screen but the SVG is too complex, using too ...
2
votes
1answer
41 views

Area Line Plot in Python using Report Lab

I am using Reportlab to create some graphs in my PDF reports. I was creating an Area Line Plot and got stuck at a point where I am not able to understand why am I not getting the output I would like ...
2
votes
0answers
64 views

Python-Reportlab error: ValueError: format not resolved

when I was using python-reportlab to create a pdf document, sometimes it throws out an exception: ValueError: format not resolved talk.google.com, I wonder why this came out, and how to solve it, the ...
2
votes
1answer
134 views

Adding date labels to a reportlab LinePlot chart

I am using reportlab to generate a LinePlot chart. I can't seem to get non numeric labels for the X axis. Does anyone have any ideas? This is my Lineplot chart class (note: im donig some ...
2
votes
1answer
143 views

ReportLab: Flowable too large on page 1 in frame 'normal' of template 'First'

I build PDF using ReportLab. My program has a MyDocTemplate(SimpleDocTemplate) class with two methods: beforePage(self) and afterPage(self) which add header and footer (as PNG image) on every page. ...
2
votes
0answers
87 views

Google gauges in python (reportlab)

I am currently writing a program that will automatically generate PDF files using reportlab (a python module). I would like to know if it would be possible to put google gauges in but not as an image, ...
2
votes
3answers
105 views

Graphing data, website views what platform to use

I have been tasked with producing a analytic tool for some of the data which we get in about the activities the company i work for has with its clients. Last week i made a mock up view of one ...
2
votes
1answer
169 views

Unicode characters are boxes in Geraldo/ReportLab generated PDF

I'm running into some Unicode related issues when generating PDF reports using Geraldo and ReportLab. When Unicode strings containing Asian characters are passed into the report, they appear in the ...
2
votes
0answers
66 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
102 views

Looping through a table in python reportlab

I am creating a table using the python module reportlab. In this table, I would like to loop through and have a different background color depending on the values of any particular cell. To do this, ...
2
votes
2answers
191 views

In reportlab add as many empty rows to a long table as fit on the last page

I'm preparing a PDF report of a list of items, which essentially is a long table, with some cells filled with data and some cells empty. This report will be printed out and the user will fill the ...
2
votes
2answers
95 views

Does reportlab's renderPM work on Google appengine?

I wanted to use ReportLab's RenderPM to generate images on Google App-Engine but it looks like it depends on c libraries. Does anyone know if it's possible to get it working? Thanks, Richard
2
votes
1answer
476 views

Draw images with canvas and use SimpleDocTemplate

I'm writing pdfs with reportlab inside a django view, they are very simple, the header, the contents and the footer. I'm using SimpleDocTemplate wich fits very well, to draw tables in the contents, ...
2
votes
1answer
584 views

rendering a ReportLab pdf built from SimpleDocTemplate

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. # Set up response ...
2
votes
2answers
284 views

reportlab: setting colspan for td in rml

I can't find any option, that would allow to set colspan for td element in rml. Is that somehow possible?
2
votes
1answer
451 views

How to set any font in reportlab Canvas in python?

Im using reportlab to create pdfs, When I try to set font using the following method im getting KeyError pdf = Canvas('test.pdf') pdf.setFont('Tahoma', 16) but if i use courier font im not getting ...
2
votes
2answers
632 views

Function calling in openerp reports

How is this sum_taxes method getting its lot parameter set? This is a code sample from the auction addon in openerp. import pooler import time from report import report_sxw from osv ...
2
votes
2answers
201 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
217 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
1answer
1k views

Appengine - Reportlab (Get Photo from Model)

I´m using Reportlab to generate a PDF. Can´t retrieve a photo from a model. #Personal Info p.drawImage('myPhoto.jpg', 40, 730) p.drawString(50, 670, 'Your name:' + '%s' % ...
2
votes
0answers
87 views

Referencing further pages with ReportLab

I'm using ReportLab to create long questionnaires and I need to create text like If you do not have allergies, proceed to page 168 Does ReportLab present some feature that can help me with this ...
2
votes
1answer
323 views

python reportlab - registerFont - django - font not available after some time

I'm wondering what is the best time to register a font for use in reportlab. I added the following line into my settings.py: pdfmetrics.registerFont(TTFont('Calibri', FONT_DIR + ...
2
votes
2answers
2k views

Django and Reportlab Question

I have written this small Django view to return pdf. @login_required def code_view(request,myid): try: deal = Deal.objects.get(id=myid) except: raise Http404 header = ...
2
votes
1answer
288 views

reportlab issue with line breaks using XPreformatted - additionall question mark printed

I'm using XPreformatted to print some preformated text and I have an issue with the line breaks. The line breaks are correctly translated but additionaly I get a "question mark" at the end of each ...
2
votes
3answers
1k views

Showing page count with ReportLab

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 emerged? ^^; I found this ...
2
votes
1answer
1k 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 comments, and I also ...

1 2 3