We’re showing here how to create a simple workflow in PDF Automation Server that is watching a folder for incoming PDF files, extracting all the pages except for the last one into a new PDF and then saving that new PDF to a file. It’s a pretty simple flow that can be created by dragging […]
Articles Tagged: extract pages
Code Sample: Split a PDF document in 2 in Java
This Java program splits one PDF document into two PDF files using Qoppa’s library jPDFAssemble: a first PDF document (“split1”) which contains the first and second page and a second PDF document (“split2”) which contains the third and fourth page of the original PDF. // Load the original PDF document PDFAssemble pdfDoc1 = new PDFAssemble […]