Metadata-Version: 1.2
Name: Pil-Lite
Version: 0.1.1
Summary: Python Imaging Library Lite
Home-page: https://github.com/alexa-infra/pil-lite
Author: Alexey Vasilyev
Author-email: alexey@alexadotlife.com
License: MIT
Download-URL: https://github.com/alexa-infra/pil-lite/tarball/0.1.1
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, BMP, 8 bit 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 3 and pypy
        * works via cffi
        * library is existed thanks to `stb_image.h, stb_image_write.h, stb_image_resize.h libraries <https://github.com/nothings/stb>`_
        
        .. 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 :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Requires-Python: >=3
