I would like to know if there is any dll that I could use to import into my C# project to handle images. What I am expecting to do is:
- Increase/Decrease brigth, exposure
- Put two photos at the same position and use the "multiply" functionality like photoshop does.
- Scale and resize
As far as I got into it, I've found gimp#, which is not what I expected because it suits only for GIMP plugins. Digging a bit more, I found Graphics32.
Graphics32 is exactly what I need in terms of functionality, but it is not made for .NET
I'm not sure if it is possible to compile the Graphics32 code and use it in C# someway (I was thinking about it)