How to Convert PDF, Word Doc and Excel files to JPEG using C#?

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I have a PDF file, an Excel file and a Word document that need to be converted to JPEG.

Is there any tool or class that I can use to do this?

something like this:

byte[] imageFile;
byte[] pdfFile;
byte[] excelFile;
byte[] docFile;

Convertor.ConvertPDFTo(imageFile, pdfFile);
Convertor.ConvertExcelTo(imageFile, excelFile);
Convertor.ConvertDocTo(imageFile, docFile);

View the full article
 
Back
Top