| Home | Download | Bestellen | Referenzen | Support | Über uns |
|
||||||||
|
VintaSoftAnnotation.NET Plug-in Für welche Zwecke kann ich die VintaSoftAnnotation.Net Plug-in nutzen? Die Bibliothek erlaubt die Arbeit mit Annotation zu dem Bild: anlegen, bearbeiten, löschen, verschmelzen mit dem Bild, speichern oder laden aus XML- oder TIFF-Datei. Was beinhaltet die Bibliothek? Die Bibliothek beinhaltet: In welchen Programmiersprachen kann ich die Bibliothek nutzen? Mit der Entwickler-Lizenz oder der Site-Lizenz können sie die Komponente nutzen in: Mit der Server-Lizenz können sie die Komponente nutzen in: Alle diese Beschränkungen sind in der registrierten Version der Bibliothek gelöscht.
Dim images As ImageCollection = New ImageCollection()
Dim annotations As AnnotationController = new AnnotationController(images)
images.Add("c:\multipage.tif");
For page = 0 To images.Count - 1
MsgBox("Page " + page.ToString());
Dim currentAnnotations As AnnotationCollection = annotations(i)
For anno = 0 To currentAnnotations.Count - 1
MessageBox.Show("Annotation " + anno.ToString() + _
", Type = " + currentAnnotations(anno).GetType().ToString())
Next anno
Next page
und hier ist ein Beispiel für C#:
ImageCollection images = new ImageCollection();
AnnotationController annotations = new AnnotationController(images);
images.Add(@"c:\multipage.tif");
for (int page = 0; page < images.Count; page++)
{
MessageBox.Show("Page " + page.ToString());
AnnotationCollection currentAnnotations = annotations[i];
for (int anno = 0; anno < currentAnnotations.Count; anno++)
{
MessageBox.Show("Annotation " + anno.ToString() +
", Type = " + currentAnnotations[anno].GetType().ToString());
}
}
|
|||||||||