Posts

Showing posts from January, 2016

Cordova plugin Crop Image in Android

Image
 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.getGalleryPictureAndCrop(function(resultBase64){ // result in base64 image format console.log(resultBase64); }, function(error){ console.log(error); });    Find plugin on  Github  .