Create beautiful mosaics of an image from an original you specify, and are made up of many small images/photos you also provide!
$ npm install -s photosaic
import fs from 'fs'
import Photosaic from 'photosaic'
const mosaic = Photosaic(`./targetImgForMosaic.png`, [
`./subImg1.png`,
`./subImg2.png`,
`./subImg3.png`,
])
const finalMosaicBuffer = await mosaic.build()
await fs.promises.writeFile(`./finalMosaic.png`, finalMosaicBuffer)
type PhotosaicImage = string | Buffer | Readable
: main abstraction of an "image" used by Photosaicstring
: the full file path of the image on the local file systemBuffer
: a raw buffer of an imageReadable
: a readable stream of an image to be piped to a writable stream
Photosaic(sourceImg, subImages, options?)
: factory function containing functionality to build mosaicssourceImg: PhotosaicImage
: The image of the final mosaic that will be createdsubImages: PhotosaicImage[]
: The small, subImages that will be used to build the mosaicoptions?
: additional options you can provide to customize the output mosaic createdoptions.gridNum?: number = 10
: The final mosaic will be made up of agridNum x gridNum
grid of subImagesoptions.intensity?: number = 0.5
: Number between 0-1 indicating the opacity of the shading on the subImages to help make the output image clearer. 0 is fully transparent shading (main image will be impossible to see), 1 is fully opaque (subImages will be impossible to make out). The default of 0.5 should be fine in most cases.options.outputType?: string = 'png'
: The output type of the final mosaic. To preserve transparency in the image, use the default, 'png'.options.outputWidth?: number = 400
: Number of pixels the output mosaic's width will be (height will auto scale). The larger the width, the bigger the mosaic and the larger in size the final mosaic will be. The larger the output the longer it takes to generate a mosaicoptions.algo?: 'closestColor' | 'random' = 'closestColor'
: How the subImages will be dispersed throughout when building the mosaic.'random'
selects one of the subImages randomly each iteration to be inserted in that slice of the mosaic'closestColor'
selects the subImage that is closest to the average color of the slice of the main image that the subImage is getting inserted to build the mosaic.
Assuming const photosaic = Photosaic(source, subImgs, opts)
, the methods below are exposed on photosaic
photosaic.build(): Promise<Buffer>
: create a mosaic and return the result in a raw Bufferphotosaic.setSourceImage(newSrc: PhotosaicImage) => PhotosaicImage
: reset source image created in mosaicphotosaic.setSubImages(subImgs: PhotosaicImage[]) => PhotosaicImage[]
: reset subImages used to build mosaicphotosaic.addSubImage(img: PhotosaicImage): PhotosaicImage[]
: add an image to the subImage list to build mosaicphotosaic.imgToStream(img: PhotosaicImage): Readable
: convert a PhotosaicImage to a Readable streamphotosaic.imgToBuffer(img: PhotosaicImage): Promise<Buffer>
: convert a PhotosaicImage to a raw Buffer
Depending on the options provided (specifically gridNum
and outputWidth
) and
the hardware you're running to build the mosaic, it could take several to tens of minutes
for photosaic.build()
to complete. Therefore, photosaic
has an EventEmitter
, photosaic.emitter
you can listen for processing
events to get the progress of the mosaic being built.
There will be a total of 2 * gridNum^2
iterations processed.
const photosaic = Photosaic(source, subImgs, opts)
photosaic.emitter.on('processing', (iteration) => {
console.log(`Currently processing '${iteration}' subImage for the mosaic`)
})
await photosaic.build()
// Currently processing '1' subImage for the mosaic
// Currently processing '2' subImage for the mosaic
// Currently processing '3' subImage for the mosaic
// ...
You can use the following task to create a mosaic via the CLI with files on your local file system.
$ npm install -s photosaic
$ node ./node_modules/photosaic/dist/tasks/createMosaic.js -i ./pathToMosaicFile.js --dir ./path/to/sub/images -g 40 -w 1000