I want to get a multi-page PDF file and want to create different PDF files per page.
I have downloaded and browsed the document, but it is for the purpose of PDF generation, I have not seen anything about the PDF itself processing.
Is there an easy way to do this in Python?
= In the PDF file reader (open ("document.pdf", "rb")) in the xrange (inputpdf.numPages): output = pdffilewriter () output. Output stream as the open page ("Document page% SPDF"% i, "wb") with the ed page (inputpdf.getPage (i)): Output. Written (outputstream)
etc.
Comments
Post a Comment