Search found 1 match
- 2014-10-30T01:57:43-07:00
- Forum: Users
- Topic: /usr/bin/convert: No such file or directory error - FIXED!
- Replies: 8
- Views: 50063
Re: /usr/bin/convert: No such file or directory error - FIXE
In shell scripts, when using full path for convert /usr/local/bin/convert replace with `which -a convert | head -n1` this get first location for this. For example : /usr/local/bin/convert $filename -resize 340x255 -background black -gravity center -extent 340x255 -format jpg -quality 85 $filename2 ...