I'm looking for the best tool out there to extract any and all metadata embedded within the most populat image file formats (JPEG and PNG specifically). whatever's in there, I'd like to know about it (XMP, Exif, IPTC, IIM, etc.). Ideally I'm looking for an all-in-one solution that I can run from a command line, but I'm interested to hear about any other tools you've found in this area to be of value.

I have found the following, each with advantages/disadvantages:

  • ExifTool is good, but the output is a little more roughshod that I would like.
  • DumpImage from the Metadata Working Group has good formatting of the metadata it does find, but doesn't support PNG.
link|improve this question

What platform? :) – t0mm13b Jan 30 '10 at 0:03
@tommieb75: Mac or Windows is fine, but if the tool is good enough I'll figure out a way to run it. – fbrereto Jan 30 '10 at 0:06
PNG does not support EXIF. – halfdan Jan 30 '10 at 14:09
@halfdan: That's fine, the file formats don't have to store metadata they weren't intended to store. But the metadata that is there I'd like to see, regardless of the format. – fbrereto Jan 30 '10 at 17:04
@fbrereto if this still bugs you, could you elaborate what do you need from the output -- especially what makes ExifTool "roughshod"? – koiyu May 20 '11 at 18:01
show 1 more comment
feedback

1 Answer

As you did not mention any preferred programming language I take PHP as an example. There is an Exif Extension for PHP which can be used to easily retrieve Metadata from an Image.

http://www.php.net/manual/en/function.exif-read-data.php

You could easily create a script that you can call from the command line. I must add that the extension only seems to provide support for JPEG and TIFF images.

Best wishes,
Fabian

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.