Using itextsharp, How can I get the thumbnails of Pages and display in a picturebox. there are hundreds of samples on net using iTextsharp but 99% of them are how to create and manipulate PDF not just read PDF.
// pdfFileName is the file Name
PdfReader reader = new PdfReader(pdfFileName);
for (int i = 1; i <= reader.NumberOfPages; i++)
{
// I need something like PdfPage here
}
Can someone suggest how to do this? I've had a look at the itext docs and can't figure out where to get started and get a PDF Page , I assumed I need PdfImageObject but how to get there...
Thanks in advance..