im-decode

A node.js library that leverages ImageMagick to turn images into RGBA arrays (Uint8Arrays).

3 个版本
安装
npm install im-decode
yarn add im-decode
pnpm add im-decode
bun add im-decode
README

im-decode

A node.js library that leverages ImageMagick to turn images into RGBA arrays (Uint8Arrays).

Install

npm install im-decode

im-decode requires ImageMagick CLI tools to be installed. There's plenty of ways to install ImageMagick, choose what's right for you.

Usage

var decode = require('im-decode');
decode(imageBuffer, function(err, rgbaArray) {
  // do something
});

decode(image, [dimensions], callback)

  • image Buffer
  • dimensions (optional) Array of dimensions in the form [w, h], i.e. [640, 480]
  • callback Function(Error, Uint8Array)

Returns a Uint8Array when provided an image as a Buffer. Passing in a dimensions Array is optional, but will provide a slight speed improvement (~7% speed increase for 640x480 images was seen in testing). The speed improvement is due to the nature of knowing the size of the end result Buffer vs continually creating new Buffers of ever increasing size. At least that's my assumption without diving into it any deeper.

版本列表
0.1.2 2014-01-08
0.1.1 2014-01-05
0.1.0 2013-12-28