cordova plugin for saving base64 image
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
munir ishak d0ee32309e change naming 4 gadus atpakaļ
src change naming 4 gadus atpakaļ
www change naming 4 gadus atpakaļ
.gitignore initial commit 4 gadus atpakaļ
README.md change naming 4 gadus atpakaļ
package.json change naming 4 gadus atpakaļ
plugin.xml change naming 4 gadus atpakaļ

README.md

Base64SaveImage

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

Usage:

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

Example

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