Search found 2 matches

by mferlito
Wed Jul 06, 2011 11:25 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How do I add text to a tiff file.
Replies: 3
Views: 14801

Re: How do I add text to a tiff file.

Thanks. Now works. How do I merge ? ImageCollection images = new ImageCollection(); AnnotationController annotations = new AnnotationController(images); images.Add(FileName); AnnotationCollection imageAnnotations = annotations[images.Count - 1]; TextAnnotation annoTex = new TextAnnotation(); annoTex...
by mferlito
Tue Jul 05, 2011 11:12 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How do I add text to a tiff file.
Replies: 3
Views: 14801

How do I add text to a tiff file.

How do I add text to a tiff file. // create image collection ImageCollection images = new ImageCollection(); // create annotation controller associated with image collection AnnotationController annotations = new AnnotationController(images); // load TIFF file into collection images.Add(FileName); /...