We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi
what s the imageUri in your exemple ???
i hava a blob then i do
var imageURI = window.webkitURL.createObjectURL(blob); alert(imageURI) CordovaExif.readData(imageURI, function(exifObject) { alert(exifObject) });
alert(imageURI) ok but alert(exifObject) not working...
an idear?
thanks
The text was updated successfully, but these errors were encountered:
The imageUri must be the data returned by success callback function executed by navigator.camera.getPicture function.
var options = { quality: 90, sourceType: 2, destinationType: 1, }; function onSuccess(imageURI) { CordovaExif.readData(imageURI, function(exifObject) { console.log(exifObject); }); }; function onFail(message) {}; navigator.camera.getPicture(onSuccess, onFail, options);
Sorry, something went wrong.
No branches or pull requests
hi
what s the imageUri in your exemple ???
i hava a blob then i do
var imageURI = window.webkitURL.createObjectURL(blob);
alert(imageURI)
CordovaExif.readData(imageURI, function(exifObject) {
alert(exifObject)
});
alert(imageURI) ok but alert(exifObject) not working...
an idear?
thanks
The text was updated successfully, but these errors were encountered: