Hi!
I just uploaded a first hack of an Exif package to squeaksource.
http://www.squeaksource.com/Exif.html
MIT License. Any contributions are welcome (see current limitations).
Haven't tested it on Pharo yet. But there shouldn't be anything special about it.
Have fun,
��Alex
From the project description:
This provides code to extract/modify the Exif (Exchangeable image file format) information from/inside media files.
"Dump all Exif information from a JPEG-file to the Transcript"
Transcript show: (Exif readFromJPEGNamed: 'p2.jpg') printAll; cr.
"Get raw Exif content for DateTime (a String)"
(Exif readFromJPEGNamed: 'p2.jpg') atTagName: #DateTime. "#('2010:11:10 16:56:33')"
"Get cooked Exif content for DateTime (a DateAndTime object)"
(Exif readFromJPEGNamed: 'p2.jpg') dateTime. "2010-11-10T16:56:33+01:00"