Hey !
I am trying to convert xlsx & xls files to pdf . I have been doing it in the below mentioned way, but I get issues with some files (having images,etc as per my observation) - Shape To Image Error. (Currently using Aspse.Cells - 19.5 for JAVA )
I tried finding the solution for this and found a thread already with the same issue. But, I followed the solution suggested by you guys to use Aspose Cells 20.9 and still get the same issue. Please let me know how to get through this issue.
Code for XLSX to PDF Conversion -
String sourceFilePath = “D:\FILES\”+fileName;
String destFilePath = “D:\PDF_Documents\”;
Workbook wbxlsx = new Workbook(sourceFilePath);
wbxlsx.save(destFilePath+fileName+"_PDF.pdf");
Thank you !