6

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!

eozzy
  • 66,048
  • 104
  • 272
  • 428

1 Answers1

14

Put the file names to process at the end:

mogrify -fuzz 20% -fill white -opaque "#eceaeb" *
Joey
  • 344,408
  • 85
  • 689
  • 683