Creating a PDF with comments / change tracking

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);

@BSchwab With the latest version revisions are rendered differently then in your output PDF. But there are still a problem out.pdf (79.0 KB). It has been logged as WORDSNET-24237. We will keep you informed and let you know once it is resolved.

The issues you have found earlier (filed as WORDSNET-24237) have been fixed in this Aspose.Words for .NET 22.10 update also available on NuGet.

Hello. I have just tested the new version.
But there are still differences between the Word PDF (above) and the Aspose PDF (below): differences2.png (99.3 KB)

@BSchwab Thank you for your feedback. I have created another issue WORDSNET-24443. We will let you know once it is resolved.
Please accept our apologies for your inconvenience.

The issues you have found earlier (filed as WORDSNET-24443) have been fixed in this Aspose.Words for .NET 22.12 update also available on NuGet.