Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: When I convert image with thereshold 80% I get a blank page

$
0
0
It will be fixed in the next version of Magick.NET that uses a percentage as the parameter. You will be able to do this:
// convert -threshold 80% 1.jpg 2.jpgusing (MagickImage image = new MagickImage("1.jpg"))
{
  image.Threshold(80);
  image.Write("2.jpg");
}

Viewing all articles
Browse latest Browse all 3693

Trending Articles