Installing ImageMagick


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if ! which identify >/dev/null; then
  2. wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
  3. tar xvfz ImageMagick.tar.gz
  4. mv ImageMagick-* ImageMagick
  5. cd ImageMagick
  6. ./configure
  7. make
  8. make install
  9. ldconfig /usr/local/lib
  10. cd ..
  11. rm -rf ImageMagick.tar.gz ImageMagick
  12. fi

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.