I want to write exif data with GPS location to uiimage on iPhone.
I googled for this and i found libiPhone-exif.a libarary for iPhone but it is not working for armv7 architecture xcode project.
I also tried using ALAssetsLibrary functions suggested on following link
Get Exif data from UIImage - UIImagePickerController
I am able to get exif data from UIImagePickerController using above code and i want to write it to UIIMage with NSData. And I also want to know whehter the exif data Will be preserved after compressing UIImage using following statement,
NSData *imgData = UIImageJPEGRepresentation(img,1.0);
Please help me to write exif data with GPS location to uiimage on iPhone