Skip to content

ygyg70/cordova-plugin-imagedownloader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cordova-plugin-imagedownloader

The cordova plugin for downloading image into gallery.

Supported platforms

  • iOS
  • Android

Installation

cordova plugin add cordova-plugin-imagedownloader --variable PHOTOLIBRARY_USAGE_DESCRIPTION="explain why you require accessing Photo"

The variable PHOTOLIBRARY_USAGE_DESCRIPTION is only for iOS to explain why you require accessing Photo, defaults to "Requires permission for saving image into Photos".

Usage

Downloads an images from URL.

window.imagedownloader
    .download(
        'http://cordova.apache.org/static/img/cordova_bot.png',
        function successFn() {
            alert('Image was downloaded');
        },
        function failureFn() {
            alert('Fail to download image');
        }
    );

License

MIT

About

The cordova plugin for downloading image into gallery.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Java 70.2%
  • Objective-C 24.5%
  • JavaScript 5.3%