john
john

Reputation: 2683

imagemagick return file format using identify

Current I am able to get the file format using identify -verbose filename.hpg, I get Format: JPEG (Joint Photographic Experts Group JFIF format) from the array.

How can I return this exact same line using the -format option, example: identify -verbose -format "%XXX" filename.hpg whereas XXX is the format charcter to return Format: JPEG (Joint Photographic Experts Group JFIF format)

Upvotes: 0

Views: 2944

Answers (1)

mario
mario

Reputation: 145482

You can more simply do this:

exec("identifiy -verbose filename.hpg | grep Format:")

Or use the format string sequences as documented in http://www.imagemagick.org/script/escape.php - but there's seemingly no equivalent for the textual type description.

exec("identify -format 'Format: %m' filename.hpg");

Upvotes: 1

Related Questions