Skip to content

mauricelambert/SteganograPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteganograPy

Description

This package hide text or bytes in image (PNG only).

Requirements

This package require :

  • python3
  • python3 Standard Library
  • pillow

Installation

pip install SteganograPy

Usages

Command line:

Stegano -m "My message !" image.jpg
python3 -m SteganograPy -d image_stegano.png

Python script

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())

Command line examples

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

Links

Licence

Licensed under the GPL, version 3.

About

This package hide text or bytes in image.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages