vote up 3 vote down star
3

I'd like to take a multi-page pdf file and create separate pdf files per page.

I've downloaded reportlab and have browsed the documentation, but it seems aimed at pdf generation, I haven't yet seen anything about processing pdf's themselves.

Is there an easy way to do this in python?

flag

65% accept rate

1 Answer

vote up 11 vote down check

pyPdf can handle this nicely (c.f. http://pybrary.net/pyPdf/ )

from pyPdf import PdfFileWriter, PdfFileReader

inputpdf = PdfFileReader(file("document.pdf", "rb"))

for i in xrange(inputpdf.numPages):
 output = PdfFileWriter()
 output.addPage(inputpdf.getPage(i))
 outputStream = file("document-page%s.pdf" % i, "wb")
 output.write(outputStream)
 outputStream.close()

etc.

link|flag
Great! Does just what I wanted thanks! – monkut Jan 29 at 5:04
@bluce: I read this yesterday and used it at work today. +1! – technomalogical Jan 30 at 21:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.