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.
problem getting image from https://
Re: problem getting image from https://
ImageMagick does not support the https protocol. It does support http and ftp.
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: problem getting image from https://
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
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/