我正在为我的应用程序使用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 数据。