Socket
Socket
Sign inDemoInstall

base64-image-utils

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    base64-image-utils

Utils for base64 image data.


Version published
Weekly downloads
6
decreased by-57.14%
Maintainers
1
Install size
8.67 kB
Created
Weekly downloads
 

Readme

Source

base64 image utils

Utils for base64 image data.

Installation

npm i base64-image-utils

Usage

const base64ImageUtils = require('base64-image-utils')

const {base64ImageToRGBMatrix, base64ImageToRGBArray, base64ImageToImageData} = base64ImageUtils

base64ImageToImageData(imgSrc, function(err, rawData, img) {

})

base64ImageToRGBMatrix(imgSrc, function(err, data) {
  /*
    data is a matrix with rows and columns that corresponds
    to every pixel of the image, where each pixel is represented
    as:
      {
        r: <Red value of the color>,
        g: <Green value of the color>,
        b: <Blue value of the color>,
        a: <Alpha value of the color>
      }
  */
})

base64ImageToRGBArray(imgSrc, function(err, data) {
  /*
    data is an array with every pixel described as:
    as:
      {
        x: <X position of the pixel>,
        y: <Y position of the pixel>,
        rgb: {
          r: <Red value of the color>,
          g: <Green value of the color>,
          b: <Blue value of the color>,
          a: <Alpha value of the color>
        }
      }
  */
})

You can optionally send a third options parameter, which is an object that can hold width or maxWidth values.

Keywords

FAQs

Last updated on 26 Sep 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc