Tagged Questions
Pisa is a Python HTML/XHTML/CSS to PDF converter
8
votes
4answers
4k views
django - pisa : adding images to PDF output
I'm using a standard example from the web (http://www.20seven.org/journal/2008/11/pdf-generation-with-pisa-in-django.html) to convert a django view / template into a PDF.
The mechanics work ...
7
votes
4answers
2k views
is there a way to generate pdf containing non-ascii symbols with pisa from django template?
i'm trying to generate a pdf from template using this snippet:
def write_pdf(template_src, context_dict):
template = get_template(template_src)
context = Context(context_dict)
html = ...
2
votes
1answer
649 views
Using an image URL for link_callback in the pisa html to pdf library
Related to: http://stackoverflow.com/questions/2179958/django-pisa-adding-images-to-pdf-output
I've got a site that uses the Google Chart API to display a bunch of reports to the user, and I'm trying ...
2
votes
2answers
317 views
Pylons and Pisa (xhtml2pdf): blank page in IE
I'm using pylons to serve a dynamically generated pdf document for reporting: my approach works in firefox & chrome (it displays the pdf inline if the plugin is available or otherwise downloads ...
2
votes
1answer
793 views
How to use Pisa on Google App Engine to generate PDF from HTML/CSS
I'm developing a simple GAE application that crawls some data from a given site and presenst it formatted in html/css.
What I would like to do now is to offer an Export to PDF feature trasforming the ...
1
vote
2answers
125 views
Creating pdfs in Python with Pisa / xhtml2pdf
I know there are a lot of questions based on pdf creation in Python but I haven't seen anything based on creating pdfs with Pisa or xhtml2pdf.
Here is my code.
...
1
vote
0answers
246 views
Pisa (XHTML -> PDF) in Django will not display images in PDF
To start, I've seen the other threads on this, and I have tried nearly everything to try to fix this but...
When using Pisa to render an HTML page to PDF, the images in said HTML go conspicuously ...
1
vote
0answers
35 views
Is it possible to customize Table of content in PISA to make it clickable to content?
I would like to customize the built-in table of content in Pisa so that it includes clickable links to allow the user to navigate to the content.
1
vote
1answer
276 views
Add 'comic sans ms' font in pdf using pisa library in django
i want to add "comic" font in pdf file by using Pisa in django. Pisa default font is Helvetica for text, but i want more fonts in my generated pdf, like arial,comic, symbol, verdana etc.
Please ...
1
vote
0answers
801 views
Problems generating pdf from HTML with Pisa (Python)
Greetings everyone,
In my web app, writen in django, I met the need to convert an html
template in a pdf document.
I decided to use Pisa and this is the incriminated code:
myview.py:
#view.py
...
...
1
vote
2answers
679 views
Python html to .doc converter?
I am using pisa, that is a python html to pdf convertion library,
Does it exist same thing for word document : a html to .doc python conversion library ?
1
vote
1answer
379 views
trouble using xhtml2pdf with unicode
I've been trying to convert Hebrew html files without success; the Hebrew characters show up in the output PDF as black rectangles regardless of any encoding I tried.
I tried some unicode test ...
1
vote
1answer
254 views
How to repeat a <th> with Pisa (xhtml2pdf)
I'm generating a PDF from HTML using Pisa. The pisa documentation (section 11.3) says that it is possible to repeat a row "It is possible to repeat table rows if a page break occurs within a table. ...
1
vote
1answer
877 views
Optimize PDF conversion in Django / Python
I have a webapp that export reports in PDF. Everything is fine when the query returns less than 100 values. When the number of records raise above 100 the server raise a 502 Proxy Error. The report ...
1
vote
1answer
390 views
Using Pisa to write a pdf to disk
I have pisa producing .pdfs in django in the browser fine, but what if I want to automatically write the file to disk? What I want to do is to be able to generate a .pdf version file at specified ...
1
vote
4answers
744 views
Table borders in Pisa
I'm trying to have table borders in my pdf using pisa to generate the pdf from my html page. According to the documentation, I should use CSS to display borders in my table. However this is not ...
1
vote
2answers
1k views
How to convert SVG images for use with Pisa / XHTML2PDF?
I'm using Pisa/XHTML2PDF to generate PDFs on the fly in Django. Unfortunately, I need to include SVG images as well, which I don't believe is an easy task.
What's the best way to go about either a) ...
0
votes
1answer
33 views
CSS not rendered by Pisa's pdf generation in Django
I generate a pdf file from HTML using Pisa:
def fetch_resources(uri, rel):
path = os.path.join(settings.MEDIA_ROOT, uri.replace(settings.MEDIA_URL, ""))
return path
def ...
0
votes
0answers
50 views
Unable to load images/files pisa pdf Django python
I had a problem before where it wouldn't show Chinese characters even when I specified @font-face to use a UTF-8 font. It turns out I cannot display images as well... so I seems like I am unable to ...
0
votes
0answers
30 views
Show different footers on first and consecutive pages with pisa/xhtml2pdf
I'm having some trouble getting a footer to appear as one frame on the first page of a Pisa document, and as another frame on every other page. I have attempted to adapt the lastPage idea from here, ...
0
votes
1answer
71 views
Filling Livecycle form with Django
I am trying to fill a livecycle created form with form data from django. Now I think I have the code done correctly but I am having a hard time with the structure of the livecycle form. Currently I ...
0
votes
1answer
108 views
Printing page numbers using Pisa
I am using pisa in my django project, to make my html generate on a PDF for report functionality. Some of my reports are getting rather large and I have noticed it doesn't have any page numbering on ...
0
votes
0answers
121 views
Output image to pdf with xhtml2pdf
I followed this post : django - pisa : adding images to PDF output and using fetch_resources.
The PDF file can be generated normally except the image is missing.
This is my code:
def ...
0
votes
1answer
155 views
Django pdf: page layout with long texts using pisa
I use pisa to generate some PDF files of the following layout:
@page {
size: a4;
@frame header {
top: 5.4cm;
bottom: 4cm;
left: 1.2cm;
right: ...
0
votes
1answer
99 views
Django - Pisa generated pdf doesn't have spaces
I'm using Django and my code to render the PDF is really typical:
t = loader.get_template('back/templates/content/receipt.html')
c = RequestContext(request, {
'pagesize': ...
0
votes
2answers
178 views
Django python pisa no module utils
No module named utils
python2.7/pisa-3.0.33-py2.7.egg/sx/pisa3/pisa_parser.py in <module>, line 29
I'm trying to use pisa to generate pdfs from html. please let me know if you've encountered ...
0
votes
0answers
39 views
Links don't work in PISA
Here is a part of my HTML:
<h5 id="my-header">Header is a header</h5>
... other stuff ...
<a href="#my-header">go there!</a>
I process this using PISA:
%PISA_BIN% -s ...
0
votes
1answer
318 views
Django: change pdf file name using pisa reportlab
I have a Django application which prints out a pdf file. I would like to know how to change the pdf file output name. Here is my views.
def write_pdf(template_src, context_dict):
template = ...
0
votes
1answer
569 views
need xhtml2pdf (Pisa 3.0) css syntax for @page and @frame
i'm trying stuff out with xhtml2pdf (aka Pisa 3.0) and django and am having trouble with the css
http://www.xhtml2pdf.com/doc/pisa-en.html
obviously the docs above talk about the css that is available ...
0
votes
1answer
371 views
Pisa and lastPage
Greetings,
I'm using PISA to generate some nice pdf of my web pages. Anyway I'd need to put a footer div -only- in the last page of the pdf document. I found the tag "@page lastPage" in the official ...
0
votes
2answers
408 views
pisa to generate a table of content via html convert
Does anyone have any idea how to use the tag so the table of content comes onto the 1st page and all text is coming behind. This is what i've got so far, it generates the table of content behind my ...
0
votes
1answer
193 views
Pisa / xhtml2pdf using cherrypy web server
Hallo,
I have tried Pisa / xhtml2pdf, that is according to me the best tool for generating Pdf in Python. I am actually trying it with Cherrypy. All examples on SO are related to Django. Could you ...