I'm trying to let the use crop a selected area from picture in my winforms application and thought to embed the Paint.NET and limit its functions. I understand that Paint.NET API is unavailable.. I'll be happy to get recommendation for another tool i can use to crop images in Winforms application.

Thanx.

link|improve this question

60% accept rate
feedback

4 Answers

It sounds like your requirements are fairly simple, you might be able to roll your own image cropper using a PictureBox and a few mouse events. :)

link|improve this answer
1  
+1. For a simple crop operation this will be FAR more simple than integrating Paint.NET - or anything else for that matter of fact. System.Drawing namespace already supports all that is needed. – Vilx- Aug 24 '09 at 15:58
thanks, the consideration was that if we need to develop the crop, the app will support crop only, but if we integrating another component we might be able to support some other features that will shipped with the component. – Tamir Aug 25 '09 at 10:23
feedback

What paint.net API? There is no paint.net api for using it from other programs.

link|improve this answer
Yep, after googling with no result for Paint.NET api i understood that the API is unavailable. but you might know another tool? – Tamir Aug 24 '09 at 8:21
feedback

you can try IpLab to see if it meets your needs. see http://code.google.com/p/iplab/

link|improve this answer
feedback

I would recommend ImageMagick. They have a .NET wrapper for it so it should be usable from C#.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.