Hi Mohamed,
Thanks for your patience.
I am pleased to share that the feature requested earlier has been implemented and its resolution will be included in upcoming release version of Aspose.Pdf for .NET 6.6.0. Please take a look over following code snippet.
// convert page to image in A4 size
PdfConverter conv = new PdfConverter();
conv.BindPdf(inputFile);
conv.GetNextImage(outputFile, PageSize.A4);
or you may accomplish the same feature using Document class in following manner.
// convert page to A4 image using JpegDevice
Document doc = new Document(inputFile);
JpegDevice device = new JpegDevice(PageSize.A4);
device.Process(doc.Pages[1], outputFile);
Nayyer Shahbaz
Support Developer, Aspose Sialkot Team
About Us Contact UsKeep in touch! We're on
Twitter and
Facebook