views:

148

answers:

2

I want a simple reusable control that I can use in a form to view and annotate images.

Example usage:

  • I load an image, or paste from clipboard to the control.
  • Annotate image, e.g. draw red ring around a feature.
  • Perhaps add some text.
  • Save image, or copy to clipboard, in chosen format (i.e. so we can compress).
A: 

I found Paint.net, but it's a little heavyweight for what I want.

Nick
A: 

If you can use WPF, you can use the InkCanvas for this task. If Windows Forms, you can grab the Tablet PC SDK and use the InkPicture control.

Josh Einstein