tags:

views:

312

answers:

1

Hello,

Is there a way we can delete the first page of the PDF using iTextSharp?

+1  A: 

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.

Jay Riggs
If you vote someone's answer as the best, please, be courteous and at give him/her a point for that.
Phil