我有包含jpg文件的UIImage * photoImage。我想将EXIF数据添加到此图像,如UserComment,ImageDescription和Software。我想将此文件保存到iOS设备上的Documents文件夹中,因为myImage.jpg我不想将其保存到PhotoLibrary。
我不确定如何添加EXIF数据。
我会使用
将图像保存到磁盘NSData *photoData = UIImageJPEGRepresentation(photoImage, 1);
[photoData writeToFile:filePath atomically:YES];
如何将EXIF数据添加到photoData?感谢