How do I access the EXIF info in a picture from the camera taken using the new 4.0/4.1 APIs?
I use _captureStillImageAsynchronouslyFromConnection_
to ta
This library could be of assistance.
The Image I/O Framework which was introduced in iOS4 allows one to read EXIF properties from a picture according to the documentation.
Link: CGImageSource Reference - have a look at the CGImageSourceCopyPropertiesAtIndex
function.
You will have to actually save the image to the Photo Library so that the EXIF data is added to the image. After that you can use ALAssetLibrary to retrieve the image along with the EXIF info.