/usr/local/bin
não está em $PATH
por padrão no CentOS. Adicione-o ou execute yum install ImageMagick
para instalar o ImageMagick a partir dos repositórios do CentOS.
Se eu comandar convert --version
, isso mostra isso.
bash: /usr/bin/convert: No such file or directory
Tudo o que fiz foi isso
1. $ wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
2. $ tar xvzf ImageMagick.tar.gz
3. $ cd ImageMagick-6.8.2-10
4. $ ./configure --prefix=/usr/local --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes
5. $ make
6. $ make install
/usr/local/bin
não está em $PATH
por padrão no CentOS. Adicione-o ou execute yum install ImageMagick
para instalar o ImageMagick a partir dos repositórios do CentOS.
Não instale software a partir da fonte, a menos que seja estritamente necessário. Acredito que o ImageMagick está no CentOS e o GraphicsMagick (um dos exemplos acima) está em EPEL
Tags imagemagick linux unix centos