buffer-image
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

buffer-image Travis CI Build Status

Convert a buffer to and from png image data.

NPM Badge

Install

npm install buffer-image

Usage

const bufferImage = require("buffer-image");
 
(async () => {
    const image = await bufferImage(Buffer.from("Hello World"));
 
    const result = await bufferImage.from(image)
    console.log(result.toString())
    //=> "Hello World"
})()

API

bufferImage(input)

Convert a buffer to a png buffer.

bufferImage.from(input)

Convert a png buffer to a buffer.

input

Type: string

The buffer to convert.

Package Sidebar

Install

npm i buffer-image

Weekly Downloads

204

Version

1.0.0

License

MIT

Unpacked Size

4.17 kB

Total Files

6

Last publish

Collaborators

  • richienb