Page 1 of 1

Fuzz is not working at all

Posted: 2009-03-03T16:21:47-07:00
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.

Re: Fuzz is not working at all

Posted: 2009-03-03T18:12:43-07:00
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

Re: Fuzz is not working at all

Posted: 2009-03-04T09:49:59-07:00
by signsrus
Ah, yes. Thank you. That was it.