Tagged Questions

6
votes
1answer
375 views

Python script to remove blank pages using pyPDF

I am trying to write a couple of python scripts using pyPDF to split PDF pages into six separate pages, order them correctly (usually printed front and back, so every other page needs to have its ...
4
votes
4answers
136 views

How do you shift all pages of a PDF document right by one inch?

I want to shift all the pages of an existing pdf document right one inch so they can be three hole punched without hitting the content. The pdf documents will be already generated so changing the way ...
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
4answers
844 views

Fast PDF splitter library

pyPdf is a great library to split, merge PDF files. I'm using it to split pdf documents into 1 page documents. pyPdf is pure python and spends quite a lot of time in the _sweepIndirectReferences() ...
3
votes
1answer
876 views

reading/writing xmp metadatas on pdf files through pypdf

I can read xmp metadatas through pyPdf with this code: a = pyPdf.PdfFileReader(open(self.fileName)) b = a.getXmpMetadata() c = b.pdf_keywords but: is this the best way? And ...
2
votes
1answer
96 views

Why my code not correctly split every page in a scanned pdf?

Update: Thanks to stardt whose script works! The pdf is a page of another one. I tried the script on the other one, and it also correctly spit each pdf page, but the order of page numbers is ...
2
votes
1answer
783 views

Change metadata of pdf file with pypdf

I'd like to create/modify the title of a pdf document using pypdf. It seems that the title is readonly. Is there a way to access this metadata r/w? If answer positive, a piece of code would be ...
2
votes
2answers
452 views

split a pdf based on outline

i would like to use pyPdf to split a pdf file based on the outline where each destination in the outline refers to a different page within the pdf. example outline: main --> points to page 1 ...
2
votes
3answers
2k views

pyPdf for IndirectObject extraction

Following this example, I can list all elements into a pdf file import pyPdf pdf = pyPdf.PdfFileReader(open("pdffile.pdf")) list(pdf.pages) # Process all the objects. print pdf.resolvedObjects now, ...
1
vote
2answers
237 views

Split PDF files in python - ValueError: invalid literal for int() with base 10: '' "

I am trying to split a huge pdf file into several small pdfs usinf pyPdf. I was trying with this oversimplified code: from pyPdf import PdfFileWriter, PdfFileReader inputpdf = ...
1
vote
0answers
240 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
1answer
834 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
3answers
2k views

How to read line by line in pdf file using PyPdf?

i working with pdf files, and i have some code to read from a pdf file,, but is there a way to read line by line from the pdf file( not pages ) ,, using Pypdf,, Python 2.6 ,, on windows ??? here is ...
1
vote
2answers
196 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
65 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
0answers
82 views

How to remove bookmark destination document properties

Question is about PDF bookmarks. When bookmarks are created, there is option to assign destination page layout (among other things) which user is encouraged not to set unless there is really reason to ...
0
votes
0answers
100 views

PyPDF Merge and Write issue

I am getting an unexpected error when using this. The first section is from a script that I found online, and I am trying to use it to pull a particular section identified in the PDF's outline. ...
0
votes
1answer
88 views

pyPDF merging and displaying as httpresponse through django

I'm having trouble incorporating pyPDF logic to merge two pdf files into my django site. I have written code that works to merge files when run in a python file on the local server(but I need to ...
0
votes
1answer
54 views

how to split pdf file into multiple pdf files by specific word?

I have one pdf file. I want to split that file into multiple pdf files by some specific word from that file. how can i do that in python ?
0
votes
2answers
264 views

merging pdf files with pypdf

I am writing a script that parses an internet site (maya.tase.co.il) for links, downloads pdf file and merges them. It works mostly, but merging gives me different kinds of errors depending on the ...
0
votes
1answer
184 views

python pypdf to read pdf and get highlighted words

how to use python pypdf to read pdf and get highlighted words? I highlighted the unknown words in a pdf and I want to extract them for referencing later.
0
votes
2answers
957 views

Are PDF box coordinates relative or absolute?

I want to programmatically edit a PDF using pyPDF. Currently, I'm struggling with interpreting the various PDF boxes' (TrimBox, MediaBox etc.) dimensions. Each box has four dimensions stored as a ...
0
votes
1answer
347 views

Aligning two PDFs for a merge using Cairo and pyPDF

I need to programmatically add additional graphical elements onto an existing, static PDF book cover. Right now I use pycairo to draw onto a transparent PDFSurface, then merge it into the existing ...
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 ...