Metadata-Version: 1.1
Name: Pil-Lite
Version: 0.0.3
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.3
Description: b"Pil-Lite\r\n=========\r\n\r\n*lightweight and limited version of PIL/Pillow library*\r\n\r\n* no native external dependencies (like libjpeg, zlib etc)\r\n* supports only trivial subset of formats (JPEG, PNG, 8bit per channel)\r\n* no image editing functionality (as well as many other things)\r\n* basically interface has only *open*, *save*, *resize* and *thumbnail* functions\r\n\r\n.. code:: python\r\n\r\n    from PilLite import Image\r\n    img = Image.open('ich.png')\r\n    print(img.size)\r\n    img.thumbnail((200, 200))\r\n    img.save('ich.jpg')\r\n\r\n\r\n* supports python 2/3 (tested only 2.7, 3.3 and 3.4)\r\n* note, *open* functionality supports more formats (like TGA, BMP - see notes in stb_image.h), and *save* supports only JPEG and PNG\r\n* library is existed thanks to\r\n\r\n  * `stb_image.h, stb_image_write.h, stb_image_resize.h libraries <https://github.com/nothings/stb>`_\r\n  * `jpeg-compressor <https://code.google.com/p/jpeg-compressor>`_\r\n  * `Boost.Python <http://www.boost.org/doc/libs/1_57_0/libs/python/doc/>`_\r\n\r\n.. image:: https://travis-ci.org/alexa-infra/pil-lite.svg\r\n   :target: https://travis-ci.org/alexa-infra/pil-lite\r\n   :alt: Travis CI build status\r\n\r\n"
Keywords: Imaging
Platform: Any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
