I want to write exif data with GPS location in uiimage on iPhone. For this, I searched googled and I found libiPhone-exif.a libarary for the iPhone, but it does not work for the xcode armv7 project. I also tried using the ALAssetsLibrary functions suggested by the following link
Get Exif Data from UIImage - UIImagePickerController
I can get exif data from UIImagePickerController using the above code, and I want to write it to UIIMage using NSData. And I also want to know that exif data will be saved after UIImage compression using the following statement,
NSData *imgData = UIImageJPEGRepresentation(img,1.0);
Please help me write exif data with GPS location in uiimage on iPhone
source
share