Using Convert directly with HTTPS
Posted: 2011-03-18T07:43:26-07:00
I'm trying to use Convert to directly access an image on the internet, then convert it and save it locally. This seems to work fine:
convert http://mywebsite.com/welcome.png -resize 150x150 c:\images\c-07352-01.png
But if I use HTTPS, it does not work:
convert https://mywebsite.com/welcome.png -resize 150x150 c:\images\c-07352-01.png
Magick: no decode delegate for this image format `//mywebsite.com/welcome.png' @ error/constitute.c/ReadImage/532.
Magick: missing an image filename `c:\images\c-07352-01.png' @ error/convert.c/ConvertImageCommand/2953.
Is my installation missing something that would allow a SSL connection?
convert http://mywebsite.com/welcome.png -resize 150x150 c:\images\c-07352-01.png
But if I use HTTPS, it does not work:
convert https://mywebsite.com/welcome.png -resize 150x150 c:\images\c-07352-01.png
Magick: no decode delegate for this image format `//mywebsite.com/welcome.png' @ error/constitute.c/ReadImage/532.
Magick: missing an image filename `c:\images\c-07352-01.png' @ error/convert.c/ConvertImageCommand/2953.
Is my installation missing something that would allow a SSL connection?