IM7 -format usage [DELETEME]

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
User avatar
Marsu42
Posts: 75
Joined: 2014-06-12T03:17:45-07:00
Authentication code: 6789
Location: Berlin

IM7 -format usage [DELETEME]

Post by Marsu42 »

... doh, found out for myself that im7 magick.exe is not drop-in for im6 identify.exe :-\ - please update http://imagemagick.org/script/escape.php to state that the specified identify.exe syntax no longer works.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: IM7 -format usage [DELETEME]

Post by fmw42 »

In IM7 use:

Code: Select all

magick identify -format "%t" rose.jpg
rose
See http://imagemagick.org/script/porting.php#cli for the above syntax

or

Code: Select all

magick rose.jpg -format "%t" info:
rose
Which simply replaces magick for convert
Post Reply