We’ve got an issue with Aspose.Words 22.5 failing to correctly render a specific document to pdf. We’ve also replicated the issue using v22.8.
Code duplicating the issue is as follows…
static void Main(string[] args)
{
var doc = new Document(args[0]);
var destFileName = Path.GetFileNameWithoutExtension(args[0]) + ".pdf";
var format = Aspose.Words.Saving.SaveOptions.CreateSaveOptions(destFileName).SaveFormat;
doc.Save(destFileName, format);
}
This is the document that produces the issue TestDocument.docx (37.4 KB)
After being converted to a PDF the data points in the chart are not visible.
We logged a similar ticket previously, we discovered this issue whilst doing testing for the resolution of this issue…
https://forum.aspose.com/t/issue-converting-word-document-containing-a-chart-to-a-pdf/245482