/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.
Fuzz is not working at all
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: Fuzz is not working at all
I think this should work for you:
Pete
Code: Select all
/usr/bin/convert some.jpg -fuzz 66% -transparent "rgb(255,255,255)" -resize '960x960>' some_new.png
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.
See my message in this topic for a link to a zip of all the files.