cordova plugin for saving base64 image
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
munir ishak 6291a804e0 update package,json 5 anni fa
src initial commit 5 anni fa
www initial commit 5 anni fa
.gitignore initial commit 5 anni fa
README.md initial commit 5 anni fa
package.json update package,json 5 anni fa
plugin.xml initial commit 5 anni fa

README.md

Base64ImageSaverPlugin

This plugin(based on devgeeks/Canvas2ImagePlugin) allows you to save BASE64 data to the iOS Photo Library, Android Gallery or WindowsPhone 8 Photo Album from your app.

This plugin fork from solderzzc/Base64ImageSaverPlugin

Usage:

Call the window.Base64ImageSaverPlugin.saveImageDataToLibrary() method using success and error callbacks and the id attribute or the element object of the canvas to save:

Example

function onDeviceReady()
{
	window.Base64ImageSaverPlugin.saveImageDataToLibrary(
        function(msg){
            console.log(msg);
        },
        function(err){
            console.log(err);
        },
        BASE64DATA
    );
}