Search found 31 matches

by iansml
Mon May 11, 2009 1:50 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Bulk load images and annotations
Replies: 6
Views: 12791

Bulk load images and annotations

Hi Alex, I've written some code that will allow users to select multiple images to upload and silently load the annotations from separate XMP files. It works partially, in that the images load and the annotations are added to the image. The problem I have is that for some reason the ThumbnailViewer ...
by iansml
Fri May 08, 2009 7:10 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Save annotations separately in Multipage TIFF?
Replies: 7
Views: 12945

Re: Save annotations separately in Multipage TIFF?

Hi Alex, Thanks for the code, which allows me to save images without annotations. This answers requirements 1 and 3 in my original post. I don't see any code that allows you to choose whether to save the annotations in a separate XMP file though. This was essential for requirements 2 and 4 in my ori...
by iansml
Fri May 08, 2009 1:43 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Rotating annotations
Replies: 6
Views: 12145

Re: Rotating annotations

Hi Alex, Thanks for quick reply. Looking at the code this still works only for increments of +/- 90 degrees. I currently provide an option for users to rotate images by a custom amount (e.g. 37, -176). This code will still not work in these cases. Do you have code that will work for these custom val...
by iansml
Fri May 08, 2009 1:11 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Rotating annotations
Replies: 6
Views: 12145

Re: Rotating annotations

Hi Alex, I didn't realise that this works for a right rotation (90) only. It does not work for left rotations (-90), 180 or a number of other custom ones. In these cases the annotations end up going all over the place. Do you have any code that will suit all possible positive and negative rotation a...
by iansml
Fri May 08, 2009 12:30 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Custom tooltip on thumbnail viewer?
Replies: 1
Views: 8230

Custom tooltip on thumbnail viewer?

Hi, Is it possible to add a custom tooltip to the ThumbnailViewer? The AnnotationViewer has a ToolTip property, but the ThumbnailViewer does not. There is an "AutoToolTip" property on the ThumbnailViewer, but this just seems to display the image index or something. I want to be able to dis...
by iansml
Thu May 07, 2009 11:38 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Multi-select annotations?
Replies: 1
Views: 6108

Multi-select annotations?

Hi,

Is there any way I can allow the user to multiselect annotations (e.g. via CTRL+Click and/or mouse drag) before they perform a function on them (e.g. delete)?

Thanks,

Ian
by iansml
Wed May 06, 2009 1:52 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Programmatically delete annotation
Replies: 1
Views: 8396

Programmatically delete annotation

Hi, Is there any way I can programmatically remove an annotation? I am able to hide it using: imageViewer1.SelectedAnnotation.Visible = false; but it is still present in the ImageViewer.Annotations collection. I want it to be removed completely (like when I select an annotation and delete it manuall...
by iansml
Tue May 05, 2009 5:49 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: New features request for version 3.0 of VintaSoftAnnotation
Replies: 20
Views: 32098

Re: New features request for version 3.0 of VintaSoftAnnotation

Hi Alex,

I would like to suggest a couple more annotations:
  • 1. Arrow
    2. Callout (textbox with arrow pointing out from it - must be able to pick which corner the arrow comes out of)
Thanks,

Ian
by iansml
Fri May 01, 2009 3:37 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Can I add context menus to annotations?
Replies: 8
Views: 12741

Re: Can I add context menus to annotations?

Hi Alexander,

How do I get the parent annotation when a context menu item is clicked? I tried:

Code: Select all

Control control = menuItem.GetCurrentParent().Parent;
- but it returns null. Any ideas?

Thanks,

Ian
by iansml
Thu Apr 30, 2009 2:43 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Save annotations separately in Multipage TIFF?
Replies: 7
Views: 12945

Save annotations separately in Multipage TIFF?

Hi Alex, We like the ability of your components to save annotations as separate XMP files and have a business case where this would be very useful. I've got this working for single-image TIFF files using the following code: //save files for (int i = 0; i < imageViewer1.Images.Count; i++) { //save ea...