jeduan / cordova-plugin-crop

Crop an image in Cordova
MIT License
114 stars 170 forks source link

http image instead of camera #55

Closed ikishanoza closed 7 years ago

ikishanoza commented 7 years ago

can i crop the image which is not pick up through camera or photo gallery ?? like below

var options = [
                    allowEdit: true,
                    sourceType: Camera.PictureSourceType.SAVEDPHOTOALBUM,
                    mediaType: Camera.MediaType.ALLMEDIA,
                    destinationType: Camera.DestinationType.FILE_URI
                ];

                plugins.crop.promise('https://static.pexels.com/photos/248797/pexels-photo-248797.jpeg', options)
                .then(function success (newPath) {

                });
jeduan commented 7 years ago

Download it first

ikishanoza commented 7 years ago

but if i download the image the i also need to delete from my device bcz i dont want that image i just need to crop this an upload it again.