Metadata-Version: 1.1
Name: Pil-Lite
Version: 0.0.4
Summary: Python Imaging Library Lite
Home-page: https://github.com/alexa-infra/pil-lite
Author: Alexey Vasilyev
Author-email: alexa.infra@gmail.com
License: MIT
Download-URL: https://github.com/alexa-infra/pil-lite/tarball/0.0.4
Description: Pil-Lite
        =========
        
        *lightweight and limited version of PIL/Pillow library*
        
        * no native external dependencies (like libjpeg, zlib etc)
        * supports only trivial subset of formats (JPEG, PNG, 8bit per channel)
        * no image editing functionality (as well as many other things)
        * basically interface has only *open*, *save*, *resize* and *thumbnail* functions
        
        .. code:: python
        
            from PilLite import Image
            img = Image.open('ich.png')
            print(img.size)
            img.thumbnail((200, 200))
            img.save('ich.jpg')
        
        
        * supports python 2/3 (tested only 2.7, 3.3 and 3.4)
        * note, *open* functionality supports more formats (like TGA, BMP - see notes in stb_image.h), and *save* supports only JPEG and PNG
        * library is existed thanks to
        
          * `stb_image.h, stb_image_write.h, stb_image_resize.h libraries <https://github.com/nothings/stb>`_
          * `jpeg-compressor <https://code.google.com/p/jpeg-compressor>`_
        
        .. image:: https://travis-ci.org/alexa-infra/pil-lite.svg
           :target: https://travis-ci.org/alexa-infra/pil-lite
           :alt: Travis CI build status
        
Keywords: Imaging
Platform: Any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
