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

   Find plugin on Github .


Popular posts from this blog

Cordova Plugin Firebase Cloud Messaging For Android

iOS Phonegap app share extension (images) with ionic

Print Hand Plugin With Cordova/PhoneGap For Android.