"identify" behavior change - "http:" retrieve no longer work

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
tickerguy
Posts: 2
Joined: 2013-07-05T10:40:57-07:00
Authentication code: 6789

"identify" behavior change - "http:" retrieve no longer work

Post by tickerguy »

Then....

$ identify -version
Version: ImageMagick 6.5.7-10 2009-12-27 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC
Features:

$ identify http://www.denninger.net/pics/IMG_0002.jpg
http://www.denninger.net/pics/IMG_0002.jpg=>/var/tmp/magick-6GqqZtVn JPEG 523x438 523x438+0+0 8-bit DirectClass 269KiB 0.000u 0:00.007
$

Now....

[karl@NewFS ~]$ identify -version
Version: ImageMagick 6.8.0-7 2013-07-05 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features:

[karl@NewFS ~]$ identify http://www.denninger.net/pics/IMG_0002.jpg
karl: unable to open image `//www.denninger.net/pics/IMG_0002.jpg': No such file or directory @ error/blob.c/OpenBlob/2638.
[karl@NewFS ~]$

This breaks a piece of a code that I've had in service for a long time. Can the previous behavior be restored or do I need to code around this with "fetch" to pre-grab the URL?
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: "identify" behavior change - "http:" retrieve no longer

Post by snibgo »

It works in v6.8.6-0 on Windows 7:

Code: Select all

D:\web\im>%IM%identify http://www.denninger.net/pics/IMG_0002.jpg
http://www.denninger.net/pics/IMG_0002.jpg=>IMG_0002.jpg JPEG 523x438 523x438+0+
0 8-bit sRGB 314KB 0.000u 0:00.036

D:\web\im>%IM%identify -version
Version: ImageMagick 6.8.6-0 2013-06-15 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2013 ImageMagick Studio LLC
Features: DPC OpenMP
Delegates: bzlib fontconfig freetype jng jp2 jpeg lcms lzma png ps tiff x xml zl
ib
I suggest you try an upgrade.
snibgo's IM pages: im.snibgo.com
tickerguy
Posts: 2
Joined: 2013-07-05T10:40:57-07:00
Authentication code: 6789

Re: "identify" behavior change - "http:" retrieve no longer

Post by tickerguy »

The current rev is what's in the FreeBSD Ports collection (this is a FreeBSD server); I'll look into a manual upgrade.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: "identify" behavior change - "http:" retrieve no longer

Post by fmw42 »

Works fine for me on IM 6.8.6.3 Q16 Mac OSX Snow Leopard
Post Reply