Articles in this section
Category / Section

Does PdfViewer supports exporting images in Windows Service?

1 min read

Yes, WinForms PDF Viewer 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:

https://www.syncfusion.com/downloads/support/directtrac/general/ExportAsImage-1966736274.zip

 

Conclusion

I hope you enjoyed learning about how to use PDF Viewer supports exporting images in Windows Service.

You can refer to our WinForms PDF Viewer Feature tour page to know about its other groundbreaking feature representations and you can explore our documentation on how to quickly get started for configuration specifications. 

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied