Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dryairship/stegano_in_py
Hides one PNG file into another.
https://github.com/dryairship/stegano_in_py
image-manipulation image-processing pil png steganography steganography-algorithms
Last synced: about 1 month ago
JSON representation
Hides one PNG file into another.
- Host: GitHub
- URL: https://github.com/dryairship/stegano_in_py
- Owner: dryairship
- License: mit
- Created: 2018-11-26T18:13:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-14T16:17:33.000Z (about 6 years ago)
- Last Synced: 2024-11-08T20:31:25.606Z (3 months ago)
- Topics: image-manipulation, image-processing, pil, png, steganography, steganography-algorithms
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Purpose
The program hides one PNG file into another.## Principle
The data of the hidden image is stored in the last two bits of a color value. The last two bits of each color value of both the images are lost. However, the difference is too subtle for the human eye to notice.## Usage
```$ python stegano-encoder.py visible-image.png hidden-image.png [output.png]```
```$ python stegano-decoder.py encoded.png [decoded.png]```