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 に基づいてライセンスされています。