1.1.2 • Published 1 year ago

merge-images-typescript v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

merge-images

Node project to merge the multiple images into single image

Installation

Node.js required

npm install merge-images-typescript

Usage

import MergeImages from 'merge-images-typescript';

const outputImagePath = 'target/mergedImage.png';   // your output image name & directory
const list = ['image1.png', 'image2.png', 'image3.png'];    // list of images
await new MergeImages().mergeImagesVertically(list, outputImagePath)
    .then(() => console.log('Images merged successfully'))
    .catch((err) => console.error('Error:', err));

Example output:

'Images merged successfully'

Contribute

Did you find a bug? Do you have an idea or a feature request? Open an issue!

License

ISC

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago