Hello,
We have a docx file that contains comments due to the activated change tracking: test.docx (29.7 KB)
When we save the PDF in Word, the PDF looks like this: test_word.pdf (115.6 KB)
With Aspose it looks like this: test.pdf (77.3 KB)
Unfortunately, the comments in the Aspose PDF do not look right. See differences.png (94.6 KB)
In addition, we get the following messages:
"Comments are partially supported. Appearance and position could be different."
Are the comments fully supported at all?
Coding:
Aspose.Words.Loading.LoadOptions loadOp = new Aspose.Words.Loading.LoadOptions();
Aspose.Words.Document doc = new Aspose.Words.Document(@"C:\Temp\aspose\test.docx", loadOp);
//doc.WarningCallback = new WarningCallback(_log);
doc.LayoutOptions.RevisionOptions.ShowInBalloons = Aspose.Words.Layout.ShowInBalloons.FormatAndDelete;
doc.LayoutOptions.RevisionOptions.ShowRevisionMarks = true;
Aspose.Words.Saving.PdfSaveOptions saveOptions = new Aspose.Words.Saving.PdfSaveOptions();
saveOptions.UpdateFields = true;
doc.Save(@"C:\Temp\aspose\test.pdf", saveOptions);