Metadata-Version: 1.1
Name: img2txt
Version: 2008.11.19
Summary: 
takes a jpeg, gif, etc... image file & outputs it as colorized ascii art.
also does 3d-plots (screenshots of image conversion & 3d plots in putty terminal
included)

Home-page: UNKNOWN
Author: kai zhu
Author-email: kaizhu@ugcs.caltech.edu
License: UNKNOWN
Description: ################################################################################
        this is a moderately complex python3.0 script fully utilizing python2.6
        extensions, & demonstrated to run under python2.6 via py3to2.
        for performance, portions of it have been inlined w/ direct C code using
        scipy.weave.  the algorithm also heavily uses bitwise operations.
        it takes a jpeg, gif... image file & outputs it in colorized ascii art.
        the actual purpose is for colorized 3-d scientific plotting in text
        terminal (screenshots of image conversion & 3d plots in putty terminal
        included)
        
        AUTHOR:
        kai zhu
        kaizhu@ugcs.caltech.edu
        
        REQUIREMENTS:
        - posix/unix os (Windows currently unsupported)
        - py3to2
        - Python Imaging Library
        - scipy
        
        USAGE:
        note "mario.jpg" must b in current directory for test to work
        $ py3to2 -c "import img2txt; img2txt.img2txt.test()"
        $ py3to2 -c "import img2txt; img2txt.tplot3d.test()"
        
        CHANGELOG:
        20081119
        fixed bugs in setup.py
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Multimedia :: Graphics :: Viewers
Requires: py3to2
Requires: PIL
Requires: scipy
