@fugood/image-mosaic
v1.0.1
Published
Creates an image mosaic, this package was forked from [`react-image-mosaic`](https://github.com/thejsn/react-image-mosaic) and used [`node-canvas`](https://github.com/Automattic/node-canvas).
Downloads
2
Readme
@fugood/image-mosaic
Creates an image mosaic,
this package was forked from react-image-mosaic
and used node-canvas
.
Installation
$ yarn add @fugood/image-mosaic
Usage
See the test as usage, you can also refer to the test fixtures and image snapshots.
import mosaic from '@fugood/image-mosaic'
mosaic({
// The width of the canvas.
width: 400,
// The height of the canvas.
height: 400,
// The number of columns of images in the mosaic.
columns: 40,
// The number of rows of images in the mosaic.
rows: 40,
// The amount of blending between each image and its matching color. A number between 0 and 1.
colorBlending: 0.8,
// The target image to recreate. Can be a string or an image, the string is assumed to be a url to an image. Expected file buffer.
target: fs.readFileSync('path/to/image'),
// An array with urls to images to be used to build the mosaic.
sources: [
fs.readFileSync('path/to/image1'),
fs.readFileSync('path/to/image2'),
],
}).then(canvas => {
const result = canvas.toBuffer()
})
See the documentation of node-canvas
for more output methods.