AbcPDF erlaubt es, Anmerkungen zu extrahieren, es gibt einen sehr guten Abschnitt in der Hilfe dazu, aber der Code, um dies zu handhaben, ist im Allgemeinen :
for (int objectIndex = 0; objectIndex < theDoc.ObjectSoup.Count; objectIndex++)
{
try
{
IndirectObject element = theDoc.ObjectSoup.ElementAt(objectIndex);
string elementType = element.GetType().ToString();
switch (elementType)
{
case "WebSupergoo.ABCpdf8.Objects.Annotation":
//process the annotation, which could be all kinds of stuff
WebSupergoo.ABCpdf8.Objects.Annotation annotation = (WebSupergoo.ABCpdf8.Objects.Annotation)element;
ProcessAnnotation(annotation);
...