Convert Pdf file pages to Images with itextsharp

c#, itext

Solution

iText/iTextSharp can generate and/or modify existing PDFs but they do not perform any rendering which is what you are looking for. I would recommend checking out Ghostscript or some other library that knows how to actually render a PDF.

Problem

I want to convert Pdf pages in Images using ItextSharp lib. Have any idea how to convert each page in image file

Original source

Related problems