Let's say I want to transform the transparent background of an image into white (flatten a png):
A simple google search points me to:
convert -flatten image.png noTransparency.png
.
This works fine if I invoke imageMagick from the command line.
But let's say I want to use the .NET wrapper magick.net to do the same thing.
Neither Google nor magick.net's documentation is very helpful for this case.
Same thing happens with
convert original.png +transparent "#E6B15A" singleColor.png
(A way to create a new image containing only a specific color from the original)
I can't find ANY way to do this using the magick.NET wrapper
Why is so hard to map imageMagick commands into .net code using magick.net??
Is there any way I could use magick.net to execute imageMagick scripts instead? I could easily create a cmd Process from .net and call imageMagick commands from there, but if there is a wrapper it must be for some reason... Is there any good and extensive magick.net documentation that I'm missing?