Plugin for manipulating images with C#

Asked

Viewed 285 times

0

i would like to know if there is any plugin that facilitates image manipulation, for example, add a photo as a component and can change scale, position and that accepts alpha transparence among various images I add. In case I haven’t been able to explain, what I want is a very simple version of an image editor, with layers, resizing, positioning etc.

  • 2

    There is. That’s all I wanted to know?

  • 1

    I need proof of his existence to be sure...

  • @Tuliocalil the existence of software like the Windows 10 image editor should be sufficient evidence.

1 answer

0


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

See the namespace System.Drawing.

In particular, see:

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

There is a software called Paint.NET, which is something like a Gimp made with .NET. Formerly its source 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.

  • Thanks! I didn’t know that Paint.net was already open source! I’m doing using Graphics anyway, but I have this problem here: https://www.youtube.com/watch?v=Y23vj23ggw8 had even posted by here before, but I had no answer, so I thought I’d see if there is a plugin or something like that...

  • *The problem is the picture keeps blinking

  • 1

    @Tuliocalil you can open a question with the code you use so that we can help stop blinking.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.