I am trying to cartoonify the image. The nearest match I found are these SO answer:
Could you tell me how I can cartoonify images in Magick.net? Thanks you :)
- http://stackoverflow.com/questions/1357403/how-to-cartoon-ify-an-image-programmatically
- http://stackoverflow.com/questions/4062365/turning-photo-into-cartoon-using-php
- http://stackoverflow.com/questions/4058224/creation-of-edge-detection-based-image-in-php
- http://www.imagemagick.org/Usage/photos/#charcoal
string FilePath = "../path/1.jpg";
MagickReadSettings settings = new MagickReadSettings();
settings.SetDefine(MagickFormat.Jpeg, "charcoal", "5");
using (MagickImage image = new MagickImage(FilePath))
{
image.Resize(100,0);
image.Write(FilePath);
}
But it did not work. It only resized the image. It did not apply any filters.Could you tell me how I can cartoonify images in Magick.net? Thanks you :)