EDN Admin
Well-known member
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
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