I'm running on Ubuntu 14 on AWS EC2 machine, and I was ImageMagick 6.7.7-10 successfully.
I have just downloaded the source, compiled and installed version 6.9.2-4 - I have followed the exact directions from here:
http://www.imagemagick.org/script/install-source.php
It works fine with local images. However, I cannot do any operation with images from the web - for example:
Code: Select all
convert http://www.manure.com/nikebasketball/us/en_US/images/kicks/athletes/kobe_bryant.png test.png
convert: unable to open image `//www.manure.com/nikebasketball/us/en_US/images/kicks/athletes/kobe_bryant.png': No such file or directory @ error/blob.c/OpenBlob/2701.
convert: no decode delegate for this image format `HTTP' @ error/constitute.c/ReadImage/501.
convert: no images defined `test.png' @ error/convert.c/ConvertImageCommand/3230.
Code: Select all
Version: ImageMagick 6.9.2-4 Q16 x86_64 2015-10-27 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC OpenMP
Delegates (built-in): fontconfig freetype jbig jng jpeg lzma openexr pangocairo png tiff x zlib
Code: Select all
convert -list delegate | grep http
Code: Select all
https => "curl" -s -k -L -o "%o" "https:%M"
If I reinstall 6.77 version, everything works fine.
Any idea how to solve this?