Created
August 14, 2015 13:50
-
-
Save abernardobr/f7b3190176b90f2ac4b2 to your computer and use it in GitHub Desktop.
How to install Graphics Magick
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## On Windows: | |
``http://www.graphicsmagick.org/INSTALL-windows.html`` | |
## On the Mac: | |
``brew install graphicsmagick`` | |
## On the Joyent box: | |
``` | |
pkgin search GraphicsMagic | |
pkgin install GraphicsMagic | |
``` | |
## On Linux production server | |
``` | |
wget ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.19.tar.gz | |
tar -xvf GraphicsMagick-1.3.19.tar.gz | |
cd GraphicsMagick-1.3.19 | |
./configure | |
make | |
sudo make install | |
``` | |
## On AWS RedHat | |
``` | |
> sudo yum install GraphicsMagick GraphicsMagick-devel | |
``` | |
### Troubleshooting | |
* [https://forums.aws.amazon.com/message.jspa?messageID=572527](https://forums.aws.amazon.com/message.jspa?messageID=572527) | |
* [http://serverfault.com/questions/569824/how-to-properly-set-up-imagemagick-on-aws-server-using-nodejs-and-express](http://serverfault.com/questions/569824/how-to-properly-set-up-imagemagick-on-aws-server-using-nodejs-and-express) | |
* [http://stackoverflow.com/questions/16094875/how-do-i-configure-a-jpeg-delegate-for-graphicsmagick](http://stackoverflow.com/questions/16094875/how-do-i-configure-a-jpeg-delegate-for-graphicsmagick) | |
* Change to 1.3.18 --> | |
[https://gist.github.com/pzaich/3997914](https://gist.github.com/pzaich/3997914) | |
* [http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/](http://blog.ericlamb.net/2008/11/fix-for-convert-no-decode-delegate-for-this-image-format/) | |
Link to Graphic Magic: [Graphic Magic Homepage](http://www.graphicsmagick.org/index.html) | |
### Checking PNG support: | |
[PNG support check](http://stackoverflow.com/questions/11196562/how-to-install-graphicsmagick-with-png-support-on-amazon-ec2) | |
### Verify Build | |
[Verify build](http://www.graphicsmagick.org/INSTALL-unix.html#verifying-the-build) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment