cordova plugin for saving base64 image
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
munir ishak 6291a804e0 update package,json il y a 5 ans
src initial commit il y a 5 ans
www initial commit il y a 5 ans
.gitignore initial commit il y a 5 ans
README.md initial commit il y a 5 ans
package.json update package,json il y a 5 ans
plugin.xml initial commit il y a 5 ans

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
    );
}