Hi Aspose team,
I’m using Apsose Word version 23.12. When I convert OTT to PDF, some table data is lost. Here is my current code:
var opt = new Aspose.Words.Loading.LoadOptions
{
LoadFormat = Aspose.Words.LoadFormat.Auto
};
var doc = new Document(inFile, opt);
doc.AcceptAllRevisions();
doc.Save(outFile, Aspose.Words.SaveFormat.Pdf);
sample.zip (407.6 KB)
The table data in page 10, 15, 18,… is lost. Please help me check and fix this issue.
Thanks.