Currently we have to manually convert each command line option into .NET equivalent.
Example: https://magick.codeplex.com/discussions/577596
It would be great if we can have a built in function which automatically converts it:
Example:
http://www.imagemagick.org/Usage/thumbnails/#torn
The page above has lots of premade options to manipulate image. Thank you.
Example: https://magick.codeplex.com/discussions/577596
It would be great if we can have a built in function which automatically converts it:
Example:
var NewImage = MagickImage.commandline("-spread 10 -blur 0x3 -threshold 50% -spread 1 -blur 0x.7 -alpha off -compose");
Since we have a lot of readily available filters/command-line option for ImageMagick tool, we can quickly copy paste them and use them. http://www.imagemagick.org/Usage/thumbnails/#torn
The page above has lots of premade options to manipulate image. Thank you.