Search found 1 match

by Andrewxyz
2018-03-01T09:04:20-07:00
Forum: Magick.NET
Topic: Convert console command to c#
Replies: 1
Views: 11130

Convert console command to c#

Hello,
I try to convert this console command:
convert EWwSX.jpg -fuzz 40% -fill white +opaque black result.png
To c#, now I'm have somthing like that,
image.ColorFuzz = (Percentage)40;
image.Settings.FillColor = MagickColors.White;
image.Opaque(MagickColors.Black, MagickColors.Black);
image ...