Hi,
I am trying to convert an excel file into pdf with the below-metioned implementation. But when workbook.save(path, saveoptions) function execute, it takes a lot of time and RAM.
// code
Workbook workbook = new Workbook(file.getAbsolutePath());
workbook.save(outputFilePath, new PdfSaveOptions());
Here I also provide a sample xlsx file in which I am facing issue.
Sample xlsx: https://drive.google.com/file/d/1Q5qk1KZnpRS93URFzI3Zhlv0tv6je_FO/view?usp=sharing
Thanks in advance,
Arth Soni.