3
votes
1answer
74 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 …
3
votes
4answers
305 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 _sweepInd …
1
vote
1answer
214 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 …
1
vote
3answers
467 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.re …
0
votes
3answers
475 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 …
