0

I recently installed imagemagick over macports to automatically crop images, but while the command works in terminal, it doesn't work in geektool. I tried using automator, but it doesn't work there either. Here's the code:

convert -crop 455x140+240+430 /Library/Desktop\ Pictures/Halo/Halo_Stats-full.png /Library/Desktop\ Pictures/Halo/Halo_Stats_Cropped.png

Any ideas why this isn't working? Thanks.

LMNOP
  • 151
  • 6
  • Do you get any kind of error message? If so, what is it? – Eric Aug 20 '12 at 07:55
  • I didn't get any error message from the terminal because it worked fine there, and geektool doesn't display error messages, but automator gave me "-: convert command not found (127)" – LMNOP Aug 20 '12 at 07:59

1 Answers1

1

It's probably a path issue. If you type

which convert

At the terminal, I will give you the full path to convert. You should be able to use that whole string as the command instead of just "convert"

Eric
  • 3,142
  • 17
  • 14