Tagged Questions
-1
votes
1answer
22 views
Command line automation for bates stamping a pdf file [closed]
I would like to create a windows command line script that would bates stamp pdf files. Does anyone know if that is possible? I'm reasonably proficient using python and vbscript. I'd be willing to ...
0
votes
1answer
43 views
Splice 2 PDF pages into one with Python
I'm trying to write a novel and I am trying to print out my own book prototypes.
I have a PDF of the book. Now I want to merge the pages so that I can print it double-sided, fold it in half, and ...
0
votes
1answer
69 views
Is there any tools to generate html with js chart to pdf? [closed]
I use d3 js to visualization my data,
and then I want to create a report which use the d3js chart and html generate a pdf file ,
any tools to use for this,such as python script or other tools
0
votes
1answer
48 views
How to merge PDFs with only PHP and keep internal and external links
How to merge PDFs with only PHP and keep internal and external links?
Simple question but I can't find a solution. It is no access to shell so pdftk and so on is unacceptable.
I'm looking for pure ...
1
vote
1answer
140 views
Programatically DOC/DOCX to PDF
I'm having an issue trying to convert DOC/DOCX to PDF programatically. I'm following this answer.
I'm using PyODConverter as mentioned in the answer above.
I asked my web hosting to install ...
-1
votes
2answers
52 views
Searching for a PDF Library for an exam checking software [closed]
We are starting a long-term project build a system for exam checking in my school.
The system should work as follows:
Exam forms are scanned into PDF after students solve them
A checker can mark the ...
1
vote
1answer
95 views
How to render links with weasyprint?
from weasyprint import HTML
HTML(string='<a href="http://google.com">link</a>').write_pdf('tmp.pdf')
Doesn't have clickable link inside it.
I'm scraping a part of the site as HTML and ...
1
vote
1answer
88 views
Weasyprint GLib error
I installed WeasyPrint and all packages that were listed in the Weasyprint - documentation
I'm using Mac OS X 10.8.2
and Python 2.7
And installed Weasyprint in my virtualenv .
Now when i try :
...
3
votes
1answer
117 views
Matplotlib PDF backend slow?
I'm writing a thousand plots to a PDF using matplotlib. I've already optimized the plotting code, ie. reusing figures/axes/lines and just changing the y data.
The bulk of the remaining time is spent ...
2
votes
1answer
105 views
Converting SVG with Embedded CSS to PDF in Python
I'm trying to generate a PDF image from an SVG image using Python. I've tried both CairoSVG and svglib. The problem is that in both cases the generated PDFs do not have any of the embedded CSS styles ...
2
votes
1answer
194 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(
...
2
votes
1answer
163 views
gui locked when calling QWebView.print_()
I'm working with Python 2.7 and PySide, and i need to export a big html-file to a pdf-file.
I have tried loading it with a QWebView and then printing it to a QPrinter configured for pdf-format. this ...
9
votes
4answers
554 views
Django/Python: generate pdf with the proper language
I use Pisa/xhtml2pdf in my Django apps to generate pdf from an HTML source. That is:
I generate the HTML file formatted with all 'printing' stuffs (e.g. page-breaks, header, footer, etc.)
I convert ...
1
vote
1answer
192 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 | |
---------
...
1
vote
1answer
136 views
make multiple plots per page and over several pages inside a 'for' loop for matplotlib in python
I need to generate over 100 plots (line diagrams) from a numerical model. The code so far is generating plots specified inside the loop, but it keeps adding multiple lines to the same 4 plots. I want ...
3
votes
1answer
479 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 = ...
1
vote
1answer
122 views
How can I place multiple EPS files onto a single page in a PDF?
I want to create a PDF where a single page contains multiple EPS(AI) files. Are there any libraries that can do this?
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 ...
1
vote
1answer
125 views
password protect pdf files created using pisa
I'm converting a html file into pdf using python pisa module. I need to password protect it. I searched everywhere in pisa module and couldn't find a solution for it. Is there anyway to password ...
0
votes
0answers
108 views
python: extracted a PDF file to text with Allias(title, description, date…)
I've used the module slate, it is based on the pdfminer.
The following script can almost correctly read articles on pages without some enters, and there are multiple pdf files so the layout may vary ...
0
votes
0answers
65 views
Download a PDF and send the extracted text to another script with Allias(title, description, date…)
I've used the module slate, it is based on the pdfminer.
The following script can correctly read articles on pages 1 and 2, but there are many pages and multiple pdf files so the layout may vary pdf ...
1
vote
4answers
693 views
matplotlib: faster PDF generation?
I would like to use matplotlib to generate a number of PDF files. My main problem is that matplotlib is slow, taking order of 0.5 seconds per file.
I tried to figure out why it takes so long, and I ...
1
vote
7answers
2k views
Is there any Python 3 module to create PDF files? [closed]
I have for some time looking for something to be able to create PDFs and integrate with my current project in Python 3. The usual references are Reportlab or pyPDF. But these two are not yet ...
1
vote
1answer
147 views
Issue with django-pisa pdf in dhivehi language
I've generated a pdf using Django-pisa.. the PDF content is taken from database which is in the correct alignment but can't get it done right on the PDF....
I've used:
filename = ...
0
votes
1answer
441 views
Generating pdf using web2py-appreport (xhtmltopdf) in Python Web2py webapp
I am from a non coding background so python, web2py is very new to me.
My app needs to export textarea content (using RTE redactor) to pdf. I get html content from textarea (redactor), can you please ...
1
vote
2answers
465 views
Convert .pages to .doc or .pdf in Python
How does one convert a .pages file to a .doc or .pdf file using Python? My use case is basically:
User uploads a .pages file to my service
My service converts the .pages to a .pdf`
The .pdf is ...
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
754 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
2answers
719 views
Python PDF thumbnail preview generation
I am looking for ways to generate jpeg thumbnail of pdf files.
I would like to do that in Python.
Is there any library or can anyone guide me how to do it?
Thanks
I am working on MacOS X Lion.
But I ...
0
votes
1answer
815 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
376 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 ...
5
votes
1answer
959 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
143 views
zipping up xhtml2pdf pdf's with zipfile
I'm using the following function to generate my pdf files from xhthml2pdf
def render_to_pdf(template_src, context_dict, filename):
template = get_template(template_src)
context = ...
1
vote
1answer
412 views
How to avoid resize figures with matplotlib when exporting to PDF?
I'm using Python 2.7 and Matplotlib to generate a multiple chart report.
I want produce this report to be exported as a PDF document.
I want to set the size of each page (12 inches width x 18 inches ...
2
votes
2answers
633 views
Python: produce PDF files, draw polygons with rounded corners
What's the right tool for the job if I want to write a Python script that produces vector graphics in PDF format? In particular, I need to draw filled polygons with rounded corners (i.e., plane ...
4
votes
0answers
814 views
Signing PDFs programmaticaly in linux [duplicate]
I'm trying to digitally sign PDFs server-side. So far I found that I can do this using MyPDFSigner, but it's far from my needs. Also I don't believe that this is the only option here.
How to sign ...
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 ...
1
vote
2answers
1k views
Add text to existing PDF document in Python
I'm trying to convert a pdf to the same size as my pdf which is an A4 page.
convert my_pdf.pdf -density 300x300 -page A4 my_png.png
The resulting png file, however, is 595px × 842px which should be ...
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 ...
25
votes
4answers
21k views
Python PDF library [closed]
what's the best Python PDF library ?
I need to make some PDF with many grid.
I'm looking for a library that allow to manage pages (multi-page): the library should calculate when the page is ended and ...
1
vote
4answers
1k views
How to merge two landscape pdf pages using pyPdf
I'm having trouble merging two PDF files with pyPdf. When I run the following code the the watermark (page1) looks fine, but the page2 has been rotated 90 degrees clockwise.
Any ideas what's going ...
0
votes
3answers
2k views
Sort a list of files using Python
I need to combine a folder full of pdfs into one file. However they must be combined in a certain order. A sample of the file names is:
WR_Mapbook__1.pdf
WR_Mapbook__1a.pdf
WR_Mapbook__2.pdf
...
2
votes
1answer
2k 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 ...
5
votes
3answers
3k views
Docx to pdf using openoffice headless way too slow
I've been using PHPWord for docx files generation. And it's been working great.
But now I have the need to also make available some of those files on a pdf version.
After a few research I found ...
2
votes
1answer
573 views
How to generate a PDF index page?
I have a python script that exports 772 pdfs and combines them into a multi-page pdf binder. While exporting each PDF, it also adds the name of the current pdf as an entry in a text file. After the ...
