We are not able to extract the annotation text/content from the attached pdf sample using Aspose.PDF api.
code snippet
var filePath = “/sample.pdf”;
var pdfDocument = new Document(filePath, “”);
foreach (var page in pdfDocument.Pages)
{
if (page.Annotations != null)
{
foreach (var anno in page.Annotations)
{
/the anno.Contents is null for the sample/
if (!string.IsNullOrWhiteSpace(anno.Contents))
{
//use annotation contents
}
}
}
}
We are afraid that the earlier logged ticket hasn’t been resolved yet due to other pending issues in the queue. We will surely inform you once we make some progress towards its resolution. We are sorry for the inconvenience.