Page 1 of 1

problem getting image from https://

Posted: 2007-11-12T16:15:50-07:00
by SamK
I am running IM through a Windows .bat file and everything works fine except when trying to get a source image which has a https:// URL.

Error message that comes up is "unable to open image 'https://**********.jpg': invalid argument"

TIA
Sam.

Re: problem getting image from https://

Posted: 2007-11-12T17:13:30-07:00
by magick
ImageMagick does not support the https protocol. It does support http and ftp.

Re: problem getting image from https://

Posted: 2007-11-19T18:39:45-07:00
by anthony
A delegate should be present however to have IM use wget, or curl to download HTTPS images. Of course you can do that yourself too.

Code: Select all

   wget -O -  https://....../image.jpg | convert - image.png