1.0.3 • Published 3 years ago

image-hide v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

image-hide

Put a secret image into another image using alpha channel magic.

Try to view this image under black background:

Inspired by Hackergame 2019

Usage

npm install --save image-hide
import { promises as fs } from 'fs'
import hide from 'image-hide'

// Size (width & height) of these images should be same.
let imageA = await fs.readFile('a.png')
let imageB = await fs.readFile('b.png')

await fs.writeFile('result.png', Buffer.from(hide(imageA, imageB)))
1.0.3

3 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago