I\'m currently using iText and I\'m wondering if there is a way to delete a page from a PDF file?
I have opened it up with a reader etc., and I want to remove a page
The 'better' way to 'delete' pages is doing
reader.selectPages("1-5,10-12");
Which means we only select pages 1-5, 10-12 effectively 'deleting' pages 6-9.