pq scan
Answer:
Hi, Bard.
The pqScan PDF to image SDK is a 100% .NET library, it can be compatible with .net framework 2.0 and above, and is able to run in x86 and x64 platform. This .net PDF converter control can integrate to Microsoft Windows XP, Windows Vista, Windows 7, Windows 8, and even in Windows 10. What's more, if you want to install your exe in Windows Server Operation Systems(Windows Server 2003, 2008 and 2012), our PDF converter SDK is also supported.
Besides Winforms application, you can use .net PDF to image toolkit into other .net projects, such as WPF and asp.net web site program. In each project, our .net PDF to image converter allows you to separate your PDF documents out, and save the graphs to image files as jpg, png, tiff, bmp, and gif rasterized picture format.
Now we will show you some C# example code, it's easy to understand and use into your .net application.
PDFDocument doc = new PDFDocument();
doc.LoadPDF("sample.pdf");
Bitmap bmp = doc.ToImage(0);
bmp.Save("output.jpg");
Hope the C# code can be helpful.
---- pqScan Support Team