Fuzz is not working at all

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
signsrus

Fuzz is not working at all

Post by signsrus »

/usr/bin/convert -transparent "rgb(255,255,255)" -fuzz 66% some.jpg -resize '960x960>' some_new.png

Everything works fine except fuzz. It is replacing strictly white and not anything close to it.

Running: ImageMagick 6.4.1 05/13/08 Q16

Thank you.

~Shawn

PS - I have also tried putting -fuzz in front of -transparent and that totally craps it up. The image doesn't display at all.
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: Fuzz is not working at all

Post by el_supremo »

I think this should work for you:

Code: Select all

/usr/bin/convert some.jpg -fuzz 66% -transparent "rgb(255,255,255)" -resize '960x960>' some_new.png
Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
signsrus

Re: Fuzz is not working at all

Post by signsrus »

Ah, yes. Thank you. That was it.
Post Reply