Hi All,
I encounter a new issue when converting my Excel file (.xls) to html with Aspose.Cells for java (aspose-cells-8.1.2.jar).
It occurs when cells have some border. I attached two image to demostrate the issue. Please compare normal.png with abnormal.png. One border was extended a bit in the abnormal case.
I converted the same Excel file (in1.xls) to HTML in MS Excel manually and it seems normal. Please get the two Excel files for testing in the attachment.
This is my code:
HtmlSaveOptions option = new HtmlSaveOptions(SaveFormat.HTML);
option.getImageOptions().setImageFormat(ImageFormat.getPng());
option.setExportImagesAsBase64(true);
workbook.save(out, option);
Can anyone kindly help me on this issue or tell me the reason? Thanks!
Best Regards,
Wallace