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 pluginCrop-View Crop-Image show on HTML
 
             
     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 .
 
