Hi Aspose Team,
We are trying to convert excel to Word and it’s taking too much time. We have a PDF of about 15 MB with a table with about 10000 rows.
Code snippet:
File file = new File(path_to_excel);
Document finalOutput = new Document()
ByteArrayOutputStream bOutputStream = new ByteArrayOutputStream();
finalOutput.save(bOutputStream, com.aspose.pdf.SaveFormat.DocX);
Do we have any alternative to this?
Also, with a higher number of rows and columns i.e. 10000 rows and 28 columns, it is just being stuck and couldn’t complete at all.
We are aspose cells version 19.5.
Thanks,
Harish