Hi,
we have an issue when converting from WORD to PDF.
When converting from Word (docx) to pdf, the table overlaps the footnote in the converted document.
Tested with the latest version of Aspose.Words for .NET 24.3.0
File for reproduction:
Test.docx (94.1 KB)
Code for reproduction:
var testFilePath = @"Test.docx";
var outputFilePath = @"Output.pdf";
var licenseName = @"License Name";
var license = new License ();
license.SetLicense (licenseName);
using (var inputStream = File.Open (testFilePath, FileMode.Open))
{
var doc = new Document(inputStream);
doc.Save(outputFilePath);
}
Output File:
Output.pdf (109.9 KB)
Thanks and best regards,
Laura