Installing ImageMagic on OS X

If you want to use “convert” app (that is bundled with ImageMagic) you should install it. Fortunately, installation is super simple and seamless.

mkdir ~/opt
cd Downloads
curl "http://www.imagemagick.org/download/ImageMagick.tar.gz" -o ImageMagick.tar.gz
tar zxf ImageMagick.tar.gz
cd ImageMagick-6.9.3-7/
./configure --prefix=$HOME/opt/
make
make install
export PATH=$PATH:$HOME/bin
convert --version