Metadata-Version: 1.0
Name: JpegThumbnail
Version: 0.1.0.0
Summary: simple and fast JPEG thumbnail reader
Home-page: http://pypi.python.org/pypi/JpegThumbnail
Author: chrono-meter@gmx.net
Author-email: chrono-meter@gmx.net
License: PSF
Description: simple and fast JPEG thumbnail reader
        
        Requirements
        ------------
        
        * Python Imaging Library
        
        
        Features
        --------
        
        * supports EXIF thumbnail
        
        * supports Adobe Photoshop thumbnail
        
        * import a partial JPEG data
        
        
        An example
        ----------
        ::
        
        from cStringIO import StringIO
        import Image
        import JpegThumbnail
        
        try:
        thumbnail = JpegThumbnail.read(filelikeobject or filename)
        except JpegThumbnail.error:
        "parse error"
        except IOError:
        "open or read error"
        else:
        im = Image.open(StringIO(thumbnail))
        im.show()
        
        
        Notes
        -----
        
        * In most case, JPEG thumbnail size is about 100 pixel.
        
        * In most case, thumbnail is found in early 10KiB of file data.
        In bad case, it's found in ealry 100KiB.
        
        
        History
        -------
        
        0.1.0.0
        ~~~~~~~
        
        * first release
        
        
        
Platform: independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
