Skip to content

jimsugg/resize-img

 
 

Repository files navigation

resize-img Build Status

Resize images in memory

Install

$ npm install --save resize-img

Usage

const fs = require('fs');
const resizeImg = require('resize-img');

resizeImg(fs.readFileSync('unicorn.png'), {width: 128, height: 128}).then(buf => {
	fs.writeFileSync('unicorn-128x128.png', buf);
});

API

resizeImg(input, options)

input

Type: buffer

An image buffer. Supported formats are bmp, jpg and png.

options

width

Type: number

Desired width of the target image.

height

Type: number

Desired height of the target image.

Related

License

MIT © Kevin Martensson

About

Resize images in memory

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%