Metadata-Version: 2.1
Name: imagecodecs-lite
Version: 2019.2.22
Summary: Subset of image transformation, compression, and decompression codecs
Home-page: https://www.lfd.uci.edu/~gohlke/
Author: Christoph Gohlke
Author-email: cgohlke@uci.edu
License: BSD
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7
Requires-Dist: numpy (>=1.11.3)

Subset of image transformation, compression, and decompression codecs
=====================================================================

Imagecodecs_lite is a Python library that provides block-oriented, in-memory
buffer transformation, compression, and/or decompression functions for
LZW, PackBits, Delta, XOR Delta, Packed Integers, Floating Point Predictor,
and Bitorder reversal.

Imagecodecs_lite is a subset of the `imagecodecs
<https://pypi.org/project/imagecodecs/>`_ library, which also provides codecs
for Zlib DEFLATE, ZStandard, Blosc, LZMA, BZ2, LZ4, LZF, ZFP, PNG, WebP,
JPEG 8-bit, JPEG 12-bit, JPEG SOF3, JPEG LS, JPEG 2000, and JPEG XR.

Unlike imagecodecs, imagecodecs_lite does not depend on external third-party
C libraries and is therefore simple to build from source code.

:Author:
  `Christoph Gohlke <https://www.lfd.uci.edu/~gohlke/>`_

:Organization:
  Laboratory for Fluorescence Dynamics. University of California, Irvine

:License: 3-clause BSD

:Version: 2019.2.22

Requirements
------------

* `CPython 2.7, 3.5+, 64-bit <https://www.python.org>`_
* `Numpy 1.11.3 <https://www.numpy.org>`_
* `Cython 0.29.5 <https://cython.org>`_

Notes
-----
The API is not stable yet and might change between revisions.

Works on little-endian platforms only.

Python 2.7 and 32-bit are deprecated.

Revisions
---------
2019.2.22
    Initial release based on imagecodecs 2019.2.22.


