Cordova
Cordova Crop Image Plugin
Recherche…
Recadrer l'image après avoir cliqué en utilisant l'appareil photo ou en sélectionnant l'image.
Il récolte les images en forme carrée.
Ce projet cordova utilise deux plugins:
Cordova Camera Plugin - https://github.com/apache/cordova-plugin-camera
Cordova Crop Image Plugin - https://github.com/jeduan/cordova-plugin-crop
Le plug-in Camera est associé au plug-in Crop Image en plaçant le code du plug-in Cop Image dans le rappel de succès du code du plug-in de caméra.
/*Camera Plugin Code*/
navigator.camera.getPicture(onSuccess, onFail, {
quality: 50,
destinationType: Camera.DestinationType.FILE_URI
});
function onSuccess(imageData) {
console.log(imageData);
/*Crop Image Plugin Code*/
plugins.crop(function success (data) {
console.log(data);
var image = document.getElementById('myImage');
image.src = data;
},
function fail () {
}, imageData, {quality:100});
}
function onFail(message) {
alert('Failed because: ' + message);
}
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow