| Home | Download | Registrar | Recomendações | Suporte | Quem somos |
|
||||||||
|
VintaSoftAnnotation.NET Plug-in Para que propósito posso usar o VintaSoftAnnotation.NET Plug-in? A biblioteca permite fazer anotações em imagens: criar, processar, apagar, unir, salvar ou carregar imagens de arquivos XML ou TIFF. De que partes consiste a biblioteca? A biblioteca contém: Em que linguagem de programação posso usar o componente? Com uma licença desenvolvedor ou licença para várias estações de trabalho você pode usar o componente em: Com a licença servidor você pode usar o componente em: Todas as restrições são removidas na versão registrada.
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
and here is an example for 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());
}
}
|
|||||||||