This package hide text or bytes in image (PNG only).
This package require :
- python3
- python3 Standard Library
- pillow
pip install SteganograPy
Stegano -m "My message !" image.jpg
python3 -m SteganograPy -d image_stegano.png
from SteganograPy import Stegano
Stegano(
"image.jpg",
message="My message.",
color="red",
output_file=None,
).build_and_save_new_image()
print(Stegano(
"image_stegano.png",
message=None,
color="red",
output_file=None,
).get_message().decode())
Stegano -h
Stegano -m "My message !" image.jpg
Stegano -f test.txt -c green -o test.jpg image.jpg
Stegano -d image_stegano.png
Stegano -c green -d image.png
Licensed under the GPL, version 3.