Search found 2 matches
- 2019-02-10T22:27:51-07:00
- Forum: Magick.NET
- Topic: Compose with -channel (command line to c#)
- Replies: 3
- Views: 80243
Re: Compose with -channel (command line to c#)
Thank you. In any case, if someone is wondering, I came up with a workaround on this one by saving the alpha of the image and then applying it later: MagickImage alpha = (MagickImage)magickImage.Separate(Channels.Alpha).First(); magickImage.Composite(overlay, CompositeOperator.Multiply); magickImage ...
- 2019-02-05T08:38:02-07:00
- Forum: Magick.NET
- Topic: Compose with -channel (command line to c#)
- Replies: 3
- Views: 80243
Compose with -channel (command line to c#)
Hello everyone! I'm sort of new to ImageMagick as whole and I would like to ask for your help. I need to apply certain filters to the images (photos) as if it was in instagram or in a photoshop alike app. Filters come with different settings such as sepia, hue, gradients and compose modes. Where I ...