Data Loss - Regression - Incorrect label alignment when excel is converted to PDF

Hi,

we are using aspose cells 7.5.0.3. we could see some regression and data loss issues when attached excel file is converted to PDF. some labels are displayed in different place. However this should be
displayed as present in the source document. see the attachment.

we are attaching the source and PDF file for your reference.

Thanks & Regards,
Thirumurthy R


Hi,

Thanks for your posting and using Aspose.Cells for Java.

We were able to notice these issue in the output pdf. We have logged the issue in our database. We will look into it and resolve this issue. Once, the issue is resolved or we have some other update for you, we will let you know asap.

This issue has been logged as CELLSJAVA-40701.

We have attached the output pdf for a reference.

Can you please let us know the ETA for fixing this regression issue.

Thanks,

Ajesh

Hi Ajesh,

Thanks for your posting and using Aspose.Cells.

We are afraid, there is currently no update for you at this moment. However, we have logged your comment in our database and requested the development team to provide some update or ETA. Once, there is some update for you, we will let you know asap.

Hi,

Please download and try our latest fix/version: Aspose.Cells for .NET v7.7.0.4 and let us know your feedback.

e.g.

Sample code:

Workbook wb = new Workbook(srcFile);

//for data loss issue, please try:

foreach (Worksheet ws in wb.Worksheets)
{

ws.AutoFitRows();

}

wb.Save(outFile.pdf);

Hi,

Thanks for your posting and using Aspose.Cells.

We have also fixed the issue in the Java version.

Please download and try the latest fix: Aspose.Cells
for Java v7.7.0.4
and let us know your feedback.

Please see the following code for your reference.

Java


String filePath = “F:\Shak-Data-RW\Downloads\Test+Excel+sheet+Akshay.xlsx”;


Workbook workbook = new Workbook(filePath);


for(int i=0; i<workbook.getWorksheets().getCount(); i++)

{

Worksheet ws = workbook.getWorksheets().get(i);

ws.autoFitRows();

}


workbook.save(filePath + “.out.pdf”, SaveFormat.PDF);

The issues you have found earlier (filed as CELLSJAVA-40701) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.