drip-image-collage
v0.1.2
Published
Turns an array of images into a photo collage - Node.js 24.4 compatible fork
Downloads
434
Readme
drip-image-collage
A Node.js 24.4 compatible fork of @mtblc/image-collage.
Changes from Original
This fork fixes compatibility issues with Node.js 24.4 by:
- Removing the
esmdependency which causes issues with newer Node.js versions - Converting the main entry point to use native ES modules instead of the
esmloader - Maintaining the same API and functionality as the original package
Installation
npm install drip-image-collageUsage
import { createCollage } from 'drip-image-collage';
const photos = [
'https://example.com/image1.jpg',
'https://example.com/image2.jpg',
'https://example.com/image3.jpg'
];
const collage = await createCollage(photos, 1000);Original Package
This is a fork of @mtblc/image-collage by Nicolás Gómez Espejo. All credit for the original implementation goes to the original author.
License
MIT - Same as the original package.
