Tagged Questions

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
3answers
784 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 ...
1
vote
0answers
241 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 ...
1
vote
2answers
256 views

Hide information in a PDF file in Python

In Python, I have files generated by ReportLab. Now, i need to extract some pages from that PDF and hide confidential information. I can create a PDF file with blacked-out spots and use pyPdf to ...
1
vote
1answer
840 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
2answers
197 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 ...
0
votes
0answers
67 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 ...
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 ...