Xls | doc -> pdf

Hi forever,

Thank you for great components and its API.

We are using aspose component to convert documents to pdf. The way we are doing it is in source below. We are converting small and large documents, but with large xls (e.g. 3000lines, 50cols) we experience performance problems (it takes minutes). Is there any other way to convert doc/xls to pdf in higher performance?

Thank you in advance.

Cells: 4.0.1.0

Pdf: 3.1.5.0

public void ConvertExcelDocument( Stream inStream, Stream outStream )

{

MemoryStream asposePdfMemBuffer = new MemoryStream();

Workbook xls = new Workbook();

xls.Open( inStream );

xls.Save(asposePdfMemBuffer, FileFormatType.AsposePdf);

Pdf pdf1 = new Pdf();

pdf1.BindXML(asposePdfMemBuffer, null);

pdf1.Save( outStream );

outStream.Flush();

}

Dear i5riza,

Please try the latest version to see if you can get an significant improvement on performance.

If you still get the same result. Please attach the documents here that can help us to reproduce the same issue at our end. We will try out best if we can find a good way to improve the performance of this issue.

Best regards,

We have reproduced this problem but we may need much time to optimize the performance for large table. I hope it can work better next month.