stepic (version 0.2.1)
index
/home/lenny/domnit.org/home/htdocs/stepic/stepic.py

Python image steganography
 
Stepic hides arbitrary data inside PIL images.
 
Besides Python itself, Stepic only depends on the Python Image Library
(apt: python-imaging, web: <http://www.pythonware.com/products/pil/>).
 
Usually, the best way to use stepic is to call encode(image, data) and
decode(image). If one source image is used to produce several data-enclosing
images, then you may wish to access the backend to encode and decode, which
is Steganographer.

 
Modules
       
Image

 
Classes
       
Steganographer

 
class Steganographer
    encodes and decodes data in an image
 
This may be useful if one source image is to be used to produce several
data-enclosing images.
 
  Methods defined here:
__init__(self, image)
decode(self)
finds data in self's image
encode(self, data)
generates a new image with hidden data

 
Functions
       
decode(image)
extracts data from an image
encode(image, data)
generates an image with hidden data, starting with an existing image
and arbitrary data

 
Data
        __all__ = ('Steganographer', 'encode', 'decode')
__author__ = 'Lenny Domnitser <http://domnit.org/>'
__version__ = '0.2.1'

 
Author
        Lenny Domnitser <http://domnit.org/>