Cordova plugin Crop Image in Android
Cordova plugin Crop-Image in android Cordova plugin Crop Image using camera and gallery With Cordova/Phonegap android application before install this plugin must you have install cordova camera plugin Crop-View Crop-Image show on HTML 1) Image take using camera method : Success return base64 image format navigator.cropimage.getPictureAndCrop(function(resultBase64){ // result in base64 image format console.log(resultBase64); }, function(error){ console.log(error); }); 2) Image take using gallery method : Success return base64 image format navigator.cropimage.getGalleryPictureA...