0

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)

john
  • 2,613
  • 2
  • 17
  • 7

1 Answers1

1

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");
Stuart P. Bentley
  • 10,195
  • 10
  • 55
  • 84
mario
  • 144,265
  • 20
  • 237
  • 291