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

base64-image-utils

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-image-utils

Utils for base64 image data.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

base64 image utils

Utils for base64 image data.

Usage

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

  var {base64ImageToRGBMatrix, base64ImageToRGBArray} = base64ImageUtils

  base64ImageToRGBMatrix(base64Image, 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>
        }
    */
  })

  base64ImageToRGBArray(base64Image, 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>
          }
        }
    */
  })

Keywords

FAQs

Package last updated on 23 Mar 2016

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