1.1.2 • Published 2 years ago

scale-pixel-art v1.1.2

Weekly downloads
6
License
MIT
Repository
github
Last release
2 years ago

scale-pixel-art

This is a package to scale up (or down) pixel art with nearest neighbour interpolation.

This enables low resolution images to be much more visible.
If you have a scaled up pixel art, this can also be used to get the raw texture back.

Usage

// get the image at input.png, scale it to be 20x bigger, and store the result in output.png

const scalePixelArt = require("scale-pixel-art")

const inputBuffer = fs.readFileSync("/input.png")

const outputBuffer = scalePixelArt(inputBuffer, 20)

fs.writeFileSync("/ouput.png", outputBuffer)

Details

scalePixelArt(input, scale)

input

Type: buffer
The image to be scaled.

scale

Type: number
How many times bigger the image should be made. The image will be made smaller if it is a value between 0 and 1.

Changelog

See the releases page for details of each update.

1.1.2

2 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago