stepic (version 0.4)
index
/home/lenny/domnit.org/home/public/stepic/stepic.py

Python image steganography
 
Stepic hides arbitrary data inside PIL images.
 
Stepic uses the Python Image Library
(apt: python-imaging, web: <http://www.pythonware.com/products/pil/>).

 
Modules
       
Image
warnings

 
Classes
       
Steganographer

 
class Steganographer
    deprecated
 
  Methods defined here:
__init__(self, image)
decode(self)
encode(self, data)

 
Functions
       
decode(image)
extracts data from an image
decode_imdata(imdata)
Given a sequence of pixels, returns an iterator of characters
encoded in the image
encode(image, data)
generates an image with hidden data, starting with an existing
image and arbitrary data
encode_imdata(imdata, data)
given a sequence of pixels, returns an iterator of pixels with
encoded data
encode_inplace(image, data)
hides data in an image

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

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