Tagged Questions

11
votes
3answers
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
890 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
106 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
405 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
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 ...
5
votes
1answer
431 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.
4
votes
2answers
584 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
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 ...
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
1answer
193 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
3answers
890 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
2answers
46 views

How to Remove I/O lock from PDF while modifing it?

I'm writing a python script to generate PDF using ReportLab. So whenever i made changes to my python script, i must have to close the pdf and again re-open it to see the changes. Even i can't compile ...
2
votes
1answer
197 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
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
0answers
255 views

Create outlines/TOC for existing PDF in Python

I'm using pyPdf to merge several PDF files into one. This works great, but I would also need to add a table of contents/outlines/bookmarks to the PDF file that is generated. pyPdf seems to have only ...
2
votes
1answer
648 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
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
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
vote
2answers
715 views

How to know on what page number flowable was placed during rendering a pdf with reportlab

How to determine on what page(need a page number) will be each flowable after rendering to pdf. I was thinking to add a custom id attribute to flowable, so i will know what flowable is it. But how ...
1
vote
0answers
85 views

creating a new PDF from existing PDF in Python

I'm struggling how to create a PDF report using another PDF as template in Python. I have a PDF file ( Template.pdf) that can be used as the template to create report every day. Template.pdf looks ...
1
vote
1answer
84 views

Django reportlabs didn't return HttpResponse Object

I am trying to generate a pdf using reportlabs and I am encountering a The view APP.VIEW didn't return an HttpResponse object. error. The function and view runs without any exceptions, even the line ...
1
vote
1answer
143 views

Generate simple pdf report using platypus

I am trying to generate a pdf report using reportlab in django. I can get a simple report started by working directly with the canvas, but it looks like platypus should make things easier. But I ...
1
vote
1answer
269 views

How to create a PDF document with differing page sizes in reportlab, python

Is it possible to create a PDF document with differing page sizes in reportlab? I would like to create a document where the first page has a different size then the other pages. Can anyone help?
1
vote
1answer
86 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
1answer
242 views

Non-numbered pages in ReportLab

Is it possible to generate a PDF file using ReportLab in such a way that the front page (and possibly table of contents) are excluded from the page numbering done by Platypus?
1
vote
1answer
866 views

Dynamically generated PDF files working in most readers except Adobe Reader

I'm trying to dynamically generate PDFs from user input, where I basically print the user input and overlay it on an existing PDF that I did not create. It works, with one major exception. Adobe ...
1
vote
0answers
52 views

How do I find the baseline of a line of text in Reportlab?

How do I find the baseline for a line of text in Reportlab so I can align other elements on the page with the baseline of the text? I am using canvas.drawString() for these elements.
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
2answers
1k 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> <para ...
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
67 views

PHP -> python seems to not work on web server

I have a few pages (one html, one php, and one python script) that takes a user input, and then outputs a pdf file (using reportlab) for the user. When I test on apache (localhost), it works ...
0
votes
3answers
128 views

generate pdf from text file in python

Is there a solution to create pdf file from txt, maybe in ReportLab? To produce like this +------+-------+------------+ | Name | Age | Nickname | +======+=======+============+ | 107 | Ella | ...
0
votes
1answer
522 views

Image aspect ratio using Reportlab in Python

I want to insert an image inside a frame. I found two ways to do this: drawImage(self, image, x, y, width=None, height=None, mask=None, preserveAspectRatio=False, anchor='c') Image(filename, ...
0
votes
1answer
284 views

background image using report lab?

how can i add background image to pdf pages using reportlab?
0
votes
2answers
122 views

Django pdf question

I Want to know if there is a way I could generate a whole html document into a pdf file. I have already report lab and have done some examples with strings before in the past. But I want to know if ...
0
votes
1answer
249 views

Image preview with Reportlab?

I'm generating some pdf's with Reportlab and Django using a web interface. The pdf's are always going to be a single page. I'd like to generate a png or jpg image of the generated page and return that ...
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
3answers
1k 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]/Parent 29 0 ...