munir ishak d0ee32309e change naming | 5 years ago | |
---|---|---|
src | 5 years ago | |
www | 5 years ago | |
.gitignore | 5 years ago | |
README.md | 5 years ago | |
package.json | 5 years ago | |
plugin.xml | 5 years ago |
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/Base64SaveImage
Call the window.Base64SaveImage.saveImageDataToLibrary()
method using success and error callbacks and the id attribute or the element object of the canvas to save:
function onDeviceReady()
{
window.Base64SaveImage.saveImageDataToLibrary(
function(msg){
console.log(msg);
},
function(err){
console.log(err);
},
BASE64DATA
);
}