From 567315ed1dbcf4f269c74b2a7c9e61ce1ff31463 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 7 Apr 2011 01:01:48 +0200 Subject: [PATCH] Added details in the README file. --- README | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README b/README index 0f4713d..1d0d752 100644 --- a/README +++ b/README @@ -25,6 +25,17 @@ Installation 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 ------------------------ In addition you can use Stéganô as a program thanks to the scripts provided in the bin directory.