A cordova plugin that provides the functionality to download internet image file to android photos gallery.
cordova plugin add https://github.com/autobotsrocks/cordova-ImageDownloader
window.autobots.imageDownloader.download(
'https://www.google.com/images/srpr/logo11w.png',
function() {
alert('success');
},
function() {
alert('failed');
}
);
MIT