Reputation: 4956
Is there a Java library for PDF page splitting (not document). The final purpose is to parse text from each of the splits separately.
As an example, let's say I want to cut every pdf page into 4 pieces vertically -- see illustration:
Upvotes: 1
Views: 361
Reputation: 7344
After clarifying you want to parse text, there is this iText sample ExtractPageContentArea or (as mentioned by @ipavlic) the PDFTextStripperByArea class from the Apache Pdfbox project.
Upvotes: 3