Fixed some bugs.

This commit is contained in:
Cédric Bonhomme 2015-10-06 07:49:11 +02:00
parent cda0578448
commit 28ba1e54cf
6 changed files with 23 additions and 35 deletions

View file

@ -27,7 +27,7 @@ __license__ = "GPLv3"
try:
from stegano import steganalysisParity
except:
print "Install stegano: python setup.py install"
print("Install Stegano: sudo pip install Stegano")
from PIL import Image
@ -43,4 +43,4 @@ parser.set_defaults(input_image_file = './pictures/Lenna.png',
input_image_file = Image.open(options.input_image_file)
output_image = steganalysisParity.steganalyse(input_image_file)
output_image.save(options.output_image_file)
output_image.save(options.output_image_file)