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
135 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
1answer
153 views
Problem running a python script (pypdf/hex errors)
I am trying to create a Python script using the PyPDF Module. What the script does it take the 'Root' folder, merges all the PDFs in it and outputs the merged PDF in an 'Output' folder and renames it ...
3
votes
0answers
171 views
splitting pages with pyPdf, getting wrong page size
I am using pyPdf to split pdf pages.
Everything works ok, but page sizes are not the same.
Original page size: 1000px
p1.mediaBox.upperRight = (w/2, h) # get 500px
p2.mediaBox.upperLeft = (w/2, h) ...
3
votes
1answer
1k views
python and pyPdf - how to extract text from the pages so that there are spaces between lines
currently, if I make a page object of a pdf page with pyPdf, and extractText(), what happens is that lines are concatenated together. For example, if line 1 of the page says "hello" and line 2 says ...
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
53 views
Assertion Error in Pypdf package in Python
I am using Python 2.4 and PyPdf 1.13 on a Windows platform.
I am trying to merge PDF files from a list into one using the following code:
import os
from pyPdf import PdfFileWriter, PdfFileReader
...
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
0answers
296 views
How to close pyPDF “PdfFileReader” Class file handle
this should be very simple question, for which I couldn't find answer by Google search: How to close file handle opened by pyPDF "PdfFileReader" Class
Here is snippet:
import os.path
from pyPdf ...
2
votes
1answer
481 views
what causes “insufficient data for image” in a pdf
I have a program in Python (using pyPDF) that merges a bunch of different PDF documents. Sometimes, the resulting pdf is fine, except for some blank pages in the middle. When I view these documents ...
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
1answer
49 views
How to get bookmark's page number
from pyPdf import PdfFileReader
f = open('document.pdf', 'rb')
p = PdfFileReader(f)
o = p.getOutlines()
List object o consists of Dictionary objects pyPdf.pdf.Destination (bookmarks), which has many ...
1
vote
1answer
102 views
PyPDF's PdfFileReader() having problems reading file, file not callable
So here is my import:
from pyPdf import PdfFileWriter, PdfFileReader
Here is were I write my pdf:
filenamer = filename + '.pdf'
pdf = PdfPages(filenamer)
(great naming convention, I know!)
I ...
1
vote
1answer
163 views
problem with closing python pypdf - writing. getting a valueError: I/O operation on closed file
can't figure this up
this function (part of class for scraping internet site into a pdf) supposed to merge the pdf file generated from web pages using pypdf.
this is the method code:
def ...
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
2answers
278 views
Python, pyPdf, Adobe PDF OCR error: unsupported filter /lzwdecode
My stuff: python 2.6 64 bit (with pyPdf-1.13.win32.exe installed). Wing IDE. Windows 7 64 bit.
I got the following error:
NotImplementedError: unsupported filter /LZWDecode
When I ran the following ...
1
vote
0answers
125 views
Wrong values reported by pyPDF for various box regions
Using pyPdf, for most files I get matched results concerning various box's dimensions compared to what Acrobat reports. However for some files I get different values reported by pyPdf and Acrobat, ...
1
vote
2answers
253 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
640 views
pypdf python tool
Using pypdf python module how to read the following pdf file http://www.envis-icpe.com/pointcounterpointbook/Hindi_Book.pdf
# -*- coding: utf-8 -*-
from pyPdf import PdfFileWriter, PdfFileReader
...
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
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
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
2answers
304 views
how to insert a string to pdf using pypdf?
sorry,.. i'am a noob in python..
I need to create a pdf file, without using an existing pdf files.. (pure create a new one)
i have googling, and lot of them is merge 2 pdf or create a new file ...
0
votes
1answer
245 views
Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found
yo yo yo
pyPdf throws this exception:
pyPdf.utils.PdfReadError: EOF marker not found
I don't need to fix pyPdf, I just need to get the EOF error to cause an "except" block to execute and skip over ...
0
votes
3answers
321 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
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
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 ...
-2
votes
1answer
340 views
python pdf to text convert [closed]
I want to convert pdf into text. I tried this code in python command prompt but it is not showing any output. Maybe I'm wrong. Can you please tell me where im wrong. Thanks in advance.
import pyPdf
...