SteganograPy
1.0.0
該套件隱藏圖像中的文字或位元組(僅限 PNG)。
該包需要:
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
根據 GPL 第 3 版許可。