a2a78795b956f83d32298b623750ba3c1811e54e
Cordova base64ToGallery Plugin
This plugin (based on devgeeks/Canvas2ImagePlugin) allows you to save base64 data as a png image into the device (iOS Photo Library, Android Gallery or WindowsPhone 8 Photo Album).
The plugin is a kind of fork of the solderzzc/Base64ImageSaverPlugin but with a cleaner history (a.k.a: no tags from Canvas2ImagePlugin repo).
Usage
Call the cordova.base64ToGallery() method using success and error callbacks and the id attribute or the element object of the canvas to save:
Methods
cordova.base64ToGallery(data, [prefix, success, fail])
| Param | Type | Default | Description |
|---|---|---|---|
| data | string | base64 string | |
| prefix | string | img_ | file's name prefix |
| success | function | console.log | success callback |
| fail | function | console.error | fail callback |
Example
function onDeviceReady() {
cordova.base64ToGallery(
base64Data,
'img_',
function(msg){
console.log(msg);
},
function(err){
console.error(err);
}
);
}
Authors and contributors
Languages
Objective-C
35.8%
JavaScript
30.2%
Java
24%
C#
10%