Dear Aspose Team,
our customers often complain that tables used in word documents are not rendered correctly when using “fit to content” setting.
The table is always using fix column widths.
If you open such document with MS Word the table are looking fine as MS Word corrects the layout of the table. But if you directly convert the document to PNG or PDF, the tables are not rendered as expected.
Tested with Aspose.Words for .Net 15.3.0
Please find attached the source document for reproducing the issue.
Code to reproduce the issue (no hotfix required):
String docFilepath = @"...docx";
global::Aspose.Words.Document doc = new global::Aspose.Words.Document(docFilepath);
String imageFilePath = @"...png";
String pdfFilePath = @"....pdf";
doc.Save(imageFilePath);
doc.Save(pdfFilePath);
Please have a look into the problem.
Wolfgang