Hello,
Is there a way we can delete the first page of the PDF using iTextSharp?
Hello,
Is there a way we can delete the first page of the PDF using iTextSharp?
There's no direct way to remove pages from a PDF using iTextSharp.
However, you can copy all the pages you want from a PDF and skip the pages you don't want. In your case you'd copy out all but the first page.
I wrote a method that does this based on the code I found on this blog entry.