Search found 3 matches
- 2018-02-25T14:58:37-07:00
- Forum: Users
- Topic: ImageMagick 6.9.9 HELP!!
- Replies: 7
- Views: 7143
Re: ImageMagick 6.9.9 HELP!!
Thanks guys. I'm not familiar enough with the bash scripting. I simply want to make an app or service with automator that my office can use to convert multipage tiffs to jpegs and put them in a folder. The script works in terminal if the "*.*" is pointed at a specific file but when its in automator ...
- 2018-02-25T13:28:08-07:00
- Forum: Users
- Topic: ImageMagick 6.9.9 HELP!!
- Replies: 7
- Views: 7143
Re: ImageMagick 6.9.9 HELP!!
Awesome! I've changed that but I'm still having an issue with the script not doing anything now. Is there a cache or something that needs to be cleared? I was working but stopped.
- 2018-02-25T13:12:45-07:00
- Forum: Users
- Topic: ImageMagick 6.9.9 HELP!!
- Replies: 7
- Views: 7143
ImageMagick 6.9.9 HELP!!
Guys, For the life of me I cannot figure out where to change the output directory of images converted with imagemagick. I'm basically using automator and this script to change multipage tiffs out to jpegs for f in "$@" do /opt/local/bin/convert '*.*' converted_%04d.jpeg echo "$f" done It's sending ...