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

New Post: Monochrome Option

$
0
0
The -monochrome option is an option for when you read an image. And that is why I added this property to the MagickReadSettings class. Below is a simple example.
using (MagickImage image = new MagickImage())
{
  MagickReadSettings readSettings = new MagickReadSettings()
  {
    UseMonochrome = true
  };
  image.Read("your-file", readSettings);
}

Viewing all articles
Browse latest Browse all 3693

Trending Articles