Plugin to manipulate images with C #

0

I would like to know if there is a plugin that makes it easy to manipulate images, for example, add a photo as a component and be able to change scale, position and accept alpha transparency between several images that I add. If I have not been able to explain, what I want is a very simple version of an image editor, with layers, resizing, positioning etc.

    
asked by anonymous 31.10.2017 / 21:03

1 answer

0

The .NET platform comes with libraries to work on images.

View the namespace System.Drawing .

In particular, see:

Note that this is native and embedded, so no plugin is required.

There is software called Paint.NET, which is something like a Gimp made with .NET. Formerly your code was open, so if you want to take a look at how these classes above can be used, can take a look at this repository .

    
31.10.2017 / 22:27