Added details in the README file.

This commit is contained in:
cedricbonhomme 2011-04-07 01:01:48 +02:00
parent 1b38541344
commit 567315ed1d

11
README
View file

@ -25,6 +25,17 @@ Installation
Refers to the INSTALL file. Refers to the INSTALL file.
Use Stéganô as a library in your Python program
-----------------------------------------------
If you want to use Stéganô in your Python program you just have to import the appropriate steganography technique. For example:
from stegano import slsb
secret = slsb.hide("./pictures/Lenna.png", "Bonjour tout le monde")
secret.save("./Lenna-secret.png")
Use Stéganô as a program Use Stéganô as a program
------------------------ ------------------------
In addition you can use Stéganô as a program thanks to the scripts provided in the bin directory. In addition you can use Stéganô as a program thanks to the scripts provided in the bin directory.