views:

481

answers:

2

I have tried:

identify -format %[exif:*] filename.jpg

Which returns nothing.

identify -verbose filename.jpg

Doesn't give me the data I want.

I am currently running:

Version: ImageMagick 6.0.7 07/25/08 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2004 ImageMagick Studio LLC

Should I be able to get this data with ImageMagick?

Thanks in advance!

+1  A: 
convert filename.jpg filename.exif

convert filename.jpg filename.iptc
chaos
I get the following: convert: no APP1 data is available `laker.exif'I'm pretty sure the data should be there. Anything I might be missing?
Lizard
Nope. It's either not there or not recognized. If you want to check, `vim laker.jpg` and `/Exif`.
chaos
+1  A: 

You could also try

exif-read-data It reads the EXIF headers from a JPEG or TIFF image file. This way you can read meta data generated by digital cameras.

It requires that PHP was compiled with --enable-exif flag, but most installations are.

Jacco