Hello,
I try to port this command to Magick.NET :
convert myimage.jpg -set colorspace RGB
//img is my original image
Thank you a lot ! :)
I try to port this command to Magick.NET :
convert myimage.jpg -set colorspace RGB
( -clone 0 -fill #ff0000 -colorize 100% )
( -clone 0 -colorspace gray -negate)
-compose blend -define compose:args=100,0 -composite result.jpg
I try this ://img is my original image
MagickImage ret = img.Copy();
MagickImage filter1 = img.Copy();
filter1.Colorize(color, new Percentage(100));
MagickImage filter2 = img.Copy();
filter2.ColorSpace = ColorSpace.GRAY;
filter2.Negate();
How to combine all of this to obtain the same result of ImageMagick command? Thank you a lot ! :)