Unfortunately not.
So the problem is:
The jpeg file consists of several parts. On this issue, we are interested in image data and exif data. Image data is an image, and exif data is where things like geocoding, shutter speed, camera type, etc. are stored.
A UIImage (and CGImage) contain only image data, without tags.
When the image picker selects an image (either from a library or from a camera), it returns a UIImage, not a jpeg. This UIImage is created from jpeg image data, but exif data in jpeg is discarded.
This means that this data is not in UIImage at all and therefore not available.
Andrew Grant Mar 05 '09 at 19:55 2009-03-05 19:55
source share