I have a function capturing few images and add them into NSMutableArray
rawImages of UIImage
. Then I pass this rawImages to other object to apply some image processing on the images in the array. In the image processing, I need to retrieve the exposure time from EXIF metadata.
I have been able to get the EXIF from CMSampleBuffer
when capturing using AVFoundation
. Is there a way to attach this EXIF to the rawImages array?
(PS: I know that one can save it into library and then read the images from library along with the metadata, but I don't want that)
Any help is much appreciated! THANKS!