Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImageMagick mogrify doesn't work

This works:

convert 005_R.JPG -fuzz 20% -fill white -opaque "#eceaeb" 005_R_magic.JPG

.. but this doesn't:

mogrify * -fuzz 20% -fill white -opaque "#eceaeb"

what am I doing wrong here?

Thanks!

like image 549
eozzy Avatar asked Jul 29 '11 12:07

eozzy


1 Answers

Put the file names to process at the end:

mogrify -fuzz 20% -fill white -opaque "#eceaeb" *
like image 69
Joey Avatar answered Nov 04 '22 21:11

Joey