1 Star 0 Fork 0

黄键涛 / cordova-base64-to-gallery

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

:warning: DISCONTINUED - 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) and a newer iOS implementation.

Alerts

Plugin id - issue #1

In order to be more consistent with the cordova naming convention, since version 2.0 the repository name and the cordova plugin id have changed to cordova-base64-to-gallery.

Please uninstall the old version and reinstall the new one.

cordova-ios > 3.8.0 - issue #3

According to the documentation, NSData+Base64.h class was removed starting from version 4.0.0 of the cordova-ios platform (and it was already deprecated from version 3.8.0).

So, cordova-base64-to-gallery plugin from version 3.0.0 has changed the iOS implementation in order to support the changes in cordova-ios platform.

If you need to support cordova-ios < 3.8.0 please refer to cordova-base64-to-gallery@2.0.2. There is also an "old" branch that might have some updates in the future (Android/WP8 fixes or something like that).

Usage

Call the cordova.base64ToGallery() method with image's base64 string, success and error callbacks (options is optional):

Methods

cordova.base64ToGallery(data, [options, success, fail])

Param Type Default Description
data string base64 string
options object *see below options
success function console.log success callback (file path as parameter)
fail function console.error fail callback (error as parameter)

Available options *

prefix

Saved file name prefix.

Default: "img_"

mediaScanner

On Android runs Media Scanner after file creation.

On iOS if true the file will be added to camera roll, otherwise will be saved to a library folder.

Default: true

Example

function onDeviceReady() {
    cordova.base64ToGallery(
        base64Data,

        {
            prefix: 'img_',
            mediaScanner: true
        },

        function(path) {
            console.log(path);
        },

        function(err) {
            console.error(err);
        }
    );
}

Authors and contributors

The MIT License (MIT) Copyright (c) 2015 Nexxa s.r.l. Copyright (c) 2011 Tommy-Carlos Williams ([http://github.com/devgeeks](http://github.com/devgeeks)) Copyright (c) 2015 Simba Zhang ([http://github.com/solderzzc](http://github.com/solderzzc)) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

暂无描述 展开 收起
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/huang_jian_tao/cordova-base64-to-gallery.git
git@gitee.com:huang_jian_tao/cordova-base64-to-gallery.git
huang_jian_tao
cordova-base64-to-gallery
cordova-base64-to-gallery
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891