Hello Aspose Team,
we’re using Aspose Words .NET 10.1.1.0 for HTML to PNG/DOCX conversions. We just face some issues with HTML tables. When the tables contain merged cells, the result is different to the table appearance in Internet Explorer.
I attach the html we convert. The following conversion code can be use to reproduce the issue:
string htmlContent = "";
MemoryStream memoryStream = new MemoryStream(htmlContent);
Document document = new Document(memoryStream);
document.Save("", SaveFormat.Docx);
document.Save("", SaveFormat.Png);
document.Save("", SaveFormat.Doc);
The attached images shows screenshots of the different appearances, opened in Word 2007 (docx/doc), an Image Viewer (png) and Internet Explorer 8 (html).
The attached source_html.txt file contain the HTML source that was used as the input for the conversion.
Is that a know restriction ? Is there any possibility to mention a date when this issue might become fixed ?
Thanks for the support,
Oliver