アプリにphonegapを使用しています。ギャラリーexifデータから画像を削除するときにphonegapを使用しています。
navigator.camera.getPicture(
onPhotoURISuccess, onFail, {
quality: 50,allowEdit: false ,targetWidth:640,targetHeight:640,
destinationType:destinationType.FILE_URI, saveToPhotoAlbum:true,
sourceType: source,correctOrientation: true
}
);
このコードは画像のコピーを取得します。その時点でiosは画像からメタデータを消去すると思います。
navigator.camera.getPicture(
onPhotoURISuccess, onFail, {
quality: 50,allowEdit: false ,targetWidth:640,targetHeight:640,
destinationType:destinationType.NATIVE_URI,saveToPhotoAlbum:true,
sourceType: source,correctOrientation: true
}
);
このコードを使用すると、exif を取得できますが、画像のサイズを変更できません。
iOSでサイズ変更された画像からexifデータを取得するのに役立ちます。