Extract Text From Stamps using C#
Contents
[
Hide
]
Extract Text from Stamp Annotations
Aspose.PDF for NET lets you extract text from stamp annotations. In order to extract text from Stamp Annotations in a PDF, the following steps can be used.
- Create a
Document
class object. - Get the desired
Annotation
from list of annotations of a page. - Define a new object of
TextAbsorber
class. - Use the TextAbsorber’s visit method to get the Text.
The following code snippet also work with Aspose.PDF.Drawing library.
public static void ExtractText()
{
Document document = new Document(dataDir + "ExtractStampText.pdf");
Annotation item = document.Pages[1].Annotations[1];
if (item is StampAnnotation annot)
{
TextAbsorber ta = new TextAbsorber();
XForm ap = annot.Appearance["N"];
ta.Visit(ap);
Console.WriteLine(ta.Text);
}
}