2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Yes, PdfViewer can support exporting pages of the Pdf document to images in Windows Service. Below is the code snippet to export the pages to images that we need to add in the Service.cs C# protected override void OnStart(string[] args) { //Create an instance PdfDocumentView PdfDocumentView view = new PdfDocumentView(); //Load the document to be exported as image view.Load("C:/tmp/Barcode.pdf"); int pagecount = 0; //ExportAsImage return the bitmap images of each page of the loaded pdf document Bitmap[] images = view.ExportAsImage(0, view.PageCount - 1); //save the images in local drive foreach (Bitmap image in images) image.Save("C:/tmp/" + pagecount++ + ".png"); }
Sample: http://www.syncfusion.com/downloads/support/directtrac/general/ExportAsImage-1966736274.zip
|
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.