Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dfocus-cordova-base64-to-gallery

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dfocus-cordova-base64-to-gallery

Cordova plugin to save base64 data as a png image into the device

  • 4.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Fork:

修改保存的类型为 jpeg 格式

: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])
ParamTypeDefaultDescription
datastringbase64 string
optionsobject*see belowoptions
successfunctionconsole.logsuccess callback (file path as parameter)
failfunctionconsole.errorfail 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

Keywords

FAQs

Package last updated on 02 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc