Skip to main content

Image transformation, compression, and decompression codecs

Project description

Imagecodecs is a Python library that provides block-oriented, in-memory buffer transformation, compression, and decompression functions for use in the tifffile, czifile, and other scientific image input/output modules.

Decode and/or encode functions are implemented for Zlib (DEFLATE), GZIP, ZStandard (ZSTD), Blosc, Brotli, Snappy, LZMA, BZ2, LZ4, LZ4F, LZ4HC, LZW, LZF, ZFP, AEC, LERC, NPY, PNG, GIF, TIFF, WebP, JPEG 8-bit, JPEG 12-bit, Lossless JPEG (LJPEG, SOF3), JPEG 2000, JPEG LS, JPEG XR, JPEG XL, AVIF, PackBits, Packed Integers, Delta, XOR Delta, Floating Point Predictor, Bitorder reversal, Bitshuffle, and Float24 (24-bit floating point).

Author:

Christoph Gohlke

Organization:

Laboratory for Fluorescence Dynamics. University of California, Irvine

License:

BSD 3-Clause

Version:

2021.1.28

Status:

Alpha

Requirements

This release has been tested with the following requirements and dependencies (other versions may work):

Required Python packages for testing (other versions may work):

Notes

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

Works on little-endian platforms only.

Python 32-bit versions are deprecated. Python <= 3.6 are no longer supported.

Some codecs are currently decode-only: tiff, lzw, packints, and jpegsof3.

The latest Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019 is required on Windows.

Refer to the imagecodecs/licenses folder for 3rd-party library licenses.

This software is based in part on the work of the Independent JPEG Group.

This software includes modified versions of dcm2niix’s jpg_0XC3.cpp.

This software includes a copy of liblj92.

Build instructions and wheels for manylinux and macOS courtesy of Grzegorz Bokota.

Update pip and setuptools to the latest version before installing imagecodecs:

python -m pip install --upgrade pip setuptools

Install imagecodecs using precompiled wheels:

python -m pip install --upgrade imagecodecs

Install the requirements for building imagecodecs from source code on latest Ubuntu Linux distributions:

sudo apt-get install build-essential python3-dev cython3 python3-setuptools python3-pip python3-wheel python3-numpy python3-pytest python3-blosc python3-brotli python3-snappy python3-lz4 libz-dev libblosc-dev liblzma-dev liblz4-dev libzstd-dev libpng-dev libwebp-dev libbz2-dev libopenjp2-7-dev libjpeg-dev libjxr-dev liblcms2-dev libcharls-dev libaec-dev libbrotli-dev libsnappy-dev libzopfli-dev libgif-dev libtiff-dev libdeflate-dev libavif-dev

Use the --lite build option to only build extensions without 3rd-party dependencies. Use the --skip-extension build options to skip building specific extensions, e.g.:

python -m pip install imagecodecs --global-option="build_ext" --global-option="--skip-bitshuffle"

The jpeg12, jpegls, jpegxl, zfp, avif, lz4f, and lerc extensions are disabled by default when building from source.

To modify other build settings such as library names and compiler arguments, provide a imagecodecs_distributor_setup.customize_build function, which will be imported and executed during setup. See setup.py for examples.

Other Python packages and C libraries providing imaging or compression codecs:

Revisions

2021.1.28

Pass 4915 tests. Add option to return JPEG XR fixed point pixel types as integers. Add LJPEG codec via liblj92 (alternative to JPEGSOF3 codec). Change zopfli header location.

2021.1.11

Fix build issues (#7, #8). Return bytearray instead of bytes on PyPy. Raise TypeError if output provided is bytes (breaking).

2021.1.8

Add float24 codec. Update copyrights.

2020.12.24

Update dependencies and build scripts.

2020.12.22

Add AVIF codec via libavif (WIP). Add DEFLATE/Zlib and GZIP codecs via libdeflate. Add LZ4F codec. Add high compression mode option to lz4_encode. Convert JPEG XR 16 and 32-bit fixed point pixel types to float32. Fix JPEG 2000 lossy encoding. Fix GIF disposal handling. Remove support for Python 3.6 (NEP 29).

2020.5.30

Add LERC codec via ESRI’s lerc library. Enable building JPEG extensions with libjpeg >= 8. Enable distributors to modify build settings.

2020.2.18

Fix segfault when decoding corrupted LZW segments. Work around Cython raises AttributeError when using incompatible numpy. Raise ValueError if in-place decoding is not possible (except floatpred).

2020.1.31

Add GIF codec via giflib. Add TIFF decoder via libtiff (WIP). Add codec_check functions (WIP). Fix formatting libjpeg error messages. Use xfail in tests. Load extensions on demand on Python >= 3.7. Add build options to skip building specific extensions. Split imagecodecs extension into individual extensions. Move shared code into shared extension. Rename imagecodecs_lite extension and imagecodecs C library to ‘imcd’. Remove support for Python 2.7 and 3.5.

2019.12.31

Fix decoding of indexed PNG with transparency. Last version to support Python 2.7 and 3.5.

2019.12.16

Add Zopfli codec. Add Snappy codec. Rename j2k codec to jpeg2k. Rename jxr codec to jpegxr. Use Debian’s jxrlib. Support pathlib and binary streams in imread and imwrite. Move external C declarations to pxd files. Move shared code to pxi file. Update copyright notices.

2019.12.10

Add version functions. Add Brotli codec (WIP). Add optional JPEG XL codec via Brunsli repacker (WIP).

2019.12.3

Sync with imagecodecs-lite.

2019.11.28

Add AEC codec via libaec (WIP). Do not require scikit-image for testing. Require CharLS 2.1.

2019.11.18

Add bitshuffle codec. Fix formatting of unknown error numbers. Fix test failures with official python-lzf.

2019.11.5

Rebuild with updated dependencies.

2019.5.22

Add optional YCbCr chroma subsampling to JPEG encoder. Add default reversible mode to ZFP encoder. Add imread and imwrite helper functions.

2019.4.20

Fix setup requirements.

2019.2.22

Move codecs without 3rd-party C library dependencies to imagecodecs_lite.

2019.2.20

Rebuild with updated dependencies.

2019.1.20

Add more pixel formats to JPEG XR codec. Add JPEG XR encoder.

2019.1.14

Add optional ZFP codec via zfp library (WIP). Add numpy NPY and NPZ codecs. Fix some static codechecker errors.

2019.1.1

Refer to the CHANGES file for older revisions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imagecodecs-2021.1.28.tar.gz (9.4 MB view hashes)

Uploaded Source

Built Distributions

imagecodecs-2021.1.28-pp37-pypy37_pp73-win32.whl (8.6 MB view hashes)

Uploaded PyPy Windows x86

imagecodecs-2021.1.28-pp37-pypy37_pp73-manylinux2010_x86_64.whl (13.7 MB view hashes)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

imagecodecs-2021.1.28-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (9.7 MB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

imagecodecs-2021.1.28-cp39-cp39-win_amd64.whl (10.6 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

imagecodecs-2021.1.28-cp39-cp39-win32.whl (8.8 MB view hashes)

Uploaded CPython 3.9 Windows x86

imagecodecs-2021.1.28-cp39-cp39-manylinux2010_x86_64.whl (24.5 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

imagecodecs-2021.1.28-cp39-cp39-manylinux2010_i686.whl (23.3 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

imagecodecs-2021.1.28-cp39-cp39-macosx_10_9_x86_64.whl (10.4 MB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

imagecodecs-2021.1.28-cp38-cp38-win_amd64.whl (10.6 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

imagecodecs-2021.1.28-cp38-cp38-win32.whl (8.8 MB view hashes)

Uploaded CPython 3.8 Windows x86

imagecodecs-2021.1.28-cp38-cp38-manylinux2010_x86_64.whl (25.1 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

imagecodecs-2021.1.28-cp38-cp38-manylinux2010_i686.whl (23.9 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

imagecodecs-2021.1.28-cp38-cp38-macosx_10_9_x86_64.whl (10.3 MB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

imagecodecs-2021.1.28-cp37-cp37m-win_amd64.whl (10.5 MB view hashes)

Uploaded CPython 3.7m Windows x86-64

imagecodecs-2021.1.28-cp37-cp37m-win32.whl (8.8 MB view hashes)

Uploaded CPython 3.7m Windows x86

imagecodecs-2021.1.28-cp37-cp37m-manylinux2010_x86_64.whl (23.4 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

imagecodecs-2021.1.28-cp37-cp37m-manylinux2010_i686.whl (22.3 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

imagecodecs-2021.1.28-cp37-cp37m-macosx_10_9_x86_64.whl (10.3 MB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page