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

New Post: adapting imagemagick background removal script to Magick.NET

$
0
0
I think you will get the best result when you translate the script but that will be quite a lot of work. All of the operations are available in Magick.NET and most of them are methods on the MagickImage collection. For example -clone 0 at the start creates a clone of the input image and that will translate to this:
using (MagickImage image = new MagickImage("$image"))
{
  using (MagickImage clone0 = image.Clone())
  {
  }
}

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>