How to remove red color

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
Thomaso
Posts: 1
Joined: 2018-02-20T12:01:03-07:00
Authentication code: 1152

How to remove red color

Post by Thomaso »

Hello,
I have one - stupid question. How Can I remove this red circle from this image? (I don't want to lose "text")
Image

I try do it by Fill / fuzz, but I'm just new in Magick, and I can't do it alone :(.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How to remove red color

Post by fmw42 »

This works for me in command line. Sorry I do not use Magick.Net

Code: Select all

convert image.png -fuzz 25% -fill white -opaque red result.png
Post Reply