Is there a simple way to extract EXIF data as text from an image file using ImageMagick. Something like the way to do it for IPTC data:
convert input.jpeg data.iptc <= binary data
convert input.jpeg data.iptctext <= textual data
Sadly this doesn't work for EXIF data:
convert input.jpeg data.exif <= binary data
convert input.jpeg data.exiftext <= not working
I know that i can use
identify -verbose input.jpeg
but then i would have to parse the result in order to search for all the EXIF and IPTC data.
So is there a simple way to do it with pure ImageMagick?