| 
				
					 | 
			преди 6 години | |
|---|---|---|
| src | преди 6 години | |
| www | преди 6 години | |
| .gitignore | преди 6 години | |
| README.md | преди 6 години | |
| package.json | преди 6 години | |
| plugin.xml | преди 6 години | 
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
Call the window.Base64ImageSaverPlugin.saveImageDataToLibrary() method using success and error callbacks and the id attribute or the element object of the canvas to save:
function onDeviceReady()
{
	window.Base64ImageSaverPlugin.saveImageDataToLibrary(
        function(msg){
            console.log(msg);
        },
        function(err){
            console.log(err);
        },
        BASE64DATA
    );
}