Hello Is it possible to write the following command line using Magick.NET ?
Thank you very much!
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 have tried to merge 3 MagickImage using this syntax to create a colortone function but no success :'( img.Composite(filter1, Gravity.Center, CompositeOperator.Blend, args);
img.Composite(filter2, Gravity.Center, CompositeOperator.Blend, args);
Please could you drive me to the solution by giving right syntaxe?Thank you very much!