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.3.31

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.3.31

Pass 4964 tests. Add numcodecs compatible codecs for use by Zarr (experimental). Support separate JPEG header in jpeg_decode. Do not decode JPEG LS and XL in jpeg_decode (breaking). Fix ZFP with partial header. Fix JPEG LS tests (#15). Fix LZ4F contentchecksum. Remove blosc Snappy tests. Fix docstrings.

2021.2.26

Support X2 and X4 floating point predictors (found in DNG).

2021.1.28

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


Release history Release notifications | RSS feed

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.3.31.tar.gz (9.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

imagecodecs-2021.3.31-cp39-cp39-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.9Windows x86-64

imagecodecs-2021.3.31-cp39-cp39-win32.whl (9.4 MB view details)

Uploaded CPython 3.9Windows x86

imagecodecs-2021.3.31-cp39-cp39-manylinux2014_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.9

imagecodecs-2021.3.31-cp39-cp39-manylinux2010_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

imagecodecs-2021.3.31-cp39-cp39-manylinux2010_i686.whl (23.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

imagecodecs-2021.3.31-cp39-cp39-macosx_10_9_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

imagecodecs-2021.3.31-cp38-cp38-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.8Windows x86-64

imagecodecs-2021.3.31-cp38-cp38-win32.whl (9.4 MB view details)

Uploaded CPython 3.8Windows x86

imagecodecs-2021.3.31-cp38-cp38-manylinux2014_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.8

imagecodecs-2021.3.31-cp38-cp38-manylinux2010_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

imagecodecs-2021.3.31-cp38-cp38-manylinux2010_i686.whl (24.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

imagecodecs-2021.3.31-cp38-cp38-macosx_10_9_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

imagecodecs-2021.3.31-cp37-cp37m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

imagecodecs-2021.3.31-cp37-cp37m-win32.whl (9.4 MB view details)

Uploaded CPython 3.7mWindows x86

imagecodecs-2021.3.31-cp37-cp37m-manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.7m

imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_x86_64.whl (23.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_i686.whl (22.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

imagecodecs-2021.3.31-cp37-cp37m-macosx_10_9_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file imagecodecs-2021.3.31.tar.gz.

File metadata

  • Download URL: imagecodecs-2021.3.31.tar.gz
  • Upload date:
  • Size: 9.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31.tar.gz
Algorithm Hash digest
SHA256 20de74033058105ef07218bf7ab2ec550c05a3e6bd5581d9daa6346e16d5f760
MD5 8a1375141e999284b5e3ec8d5a5341bf
BLAKE2b-256 6b935ac7256a41a26a2f7f89b69fdc7bb91e94e22f1b015bd2367bf5af70a9b7

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4ac4d7e87904d0f97a4c2d346582c468f645cc01663efd887b8a4d35d56224a2
MD5 856987a0775b06abdd0434d01a608ec8
BLAKE2b-256 bb54fddee454cb046e2105b8b7c5ead9a8d10aaa87974c846958c4262b591696

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 42894fc0ff52a8494881c6267540c83901372264e7949d594513b74029fbf086
MD5 71af6b72d071ad5e7aa0995a486e120d
BLAKE2b-256 9fa8077f4ccd9baaa884314d2a85159e56fc5f38a7a9476d4e564b37b0b87afa

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 decf0456fd79e869ee8da8844e5338dc07cf017babf98d32330be94bfd8573d5
MD5 8165c0750c7058a0c70b3301b0b71307
BLAKE2b-256 b4be3dca22f5c41506c77b0625b6e721cf838ca028ea75a07c0f215e748af75a

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc442e57b5ca956cd1d4379cc719087d03bb64bb3c095e5c2c86bf1cf39f48c1
MD5 33124c554aa10a5783ccfc36f270bf0b
BLAKE2b-256 e68c2a3f192e28ca613a98e4f71c762788d3397d044bcb09ea5f2b62681ae423

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d80f61b0f1fd48f4c81ebce7fc8a666e3fb176528cd27061f8700a56fb7e299
MD5 46e2381da25de3824a7fdb637add225b
BLAKE2b-256 5069764d6d0bd1af0d337087e8b928a1870d93255687ae8659705a475e9f20ca

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b4124b04ed41706b3f6cb747251e1ef8117ab0a9b063ad58f00b0def85d102b
MD5 3e5d68ea601dec15311dccd69e182f66
BLAKE2b-256 bacbbb654ed7fdf1f4931198a547e9f7f56af5f6011c540b04f1d3c8e4ce84dc

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ee07079ef53d9280d8274dad36bf86c7b7adb05c3856c92c59a76b26fb7ff1b
MD5 907aa496e3493f182a7dc8a02beca577
BLAKE2b-256 18771b090d6fbc5ca337318aada9a4d0f7575e50320a84aa2aa278bf6ff57549

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0ccc6c5075427094dfb0da0bdc1bb01350ad95daeefa65618b6138dda92498ba
MD5 10f55e616030c42bb9b7bdcc883d3fdd
BLAKE2b-256 723854487e154451ca2a4594135b7364cffd8aab5bcd7c7ab98d92172af89314

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfcaafd62f37da5534e627e16358f0e3506277cfc816980acf640f819756600f
MD5 d9365a98f014a5837517a26169b0120a
BLAKE2b-256 aab670c32b386d3801a7ad2a995a72413a15d554c40c1fb672c25b4419f1b2e8

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99c089e5af6cc9ecd52fd6ad28cf7aaf9c17b9c90a91559a1e335a61b3cccae5
MD5 1b36a27fe958c09864ea20b09a3e1290
BLAKE2b-256 2d3ad47ce3c3bf89c20a09fc0a6970aec8f489e88317deed4b3a0adb528df9c3

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5153e0ba9819224ccddb1258d179eef89d37b4ebe4a0bf7195d900aa52a2f821
MD5 bd7bbcb217dbb24bd4f522f63fbc08f4
BLAKE2b-256 2b4ab3671d8960ec96ec95c5b5e8eda3a5e37ebd2a4a6981701f77d8a385e409

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f78895866c82d7dea3cb2530eafe967e18b635dafb2c694f9a40b688e334abf
MD5 95287e2b597babaa9814a365fc5cca10
BLAKE2b-256 6b0197702252aafb70e339f1e112289083b029e6b5da4c0e9cae2ed35cc165be

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 26e9357df8ffa2733a64e13b7af5382101036cb9b288126d2cb10cbbe83e0b56
MD5 8c761d7eb4fd79c3698f625abc98cb27
BLAKE2b-256 f3644632f3745fb33f2e54c13f612be4c64d08e5db76fd7033540f5af89a96ed

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8a110facaa16bccc3ceb6f86563185ab90ec24126acd914dd2467cf6a48cfa30
MD5 db1be238c45a75f9dc29b5b4d9b1379c
BLAKE2b-256 b8f32c7bf77d3d06dbb011ef9cf6663bc26b3278a32c7f53e6c334967825a3ac

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 323d559e1232d85dcb6d0d43eee8926326b749f8714711c85c42e9ad93561c3d
MD5 5b99462c4dd07d92193c372712576047
BLAKE2b-256 d3b7b376a1e8d3c7f7f83012e722a9c11606137540248f89766bb28a8dc879d4

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c9bfed1135c02a673313e540bf8a5d2381bbece80fc9ca1a779446881d396dd4
MD5 164bfbba6310a480bfdc8eb3753b79da
BLAKE2b-256 e4431bfbcc996e8c65adc3fa8884d8fdb15348e978342442c4006430ea90e26f

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8965e248c24fb601ef33cd514a92d091f068441101576ada64658135ad973682
MD5 bc06fd81fd66bc064a43824bd6712b5c
BLAKE2b-256 4d25242238298f8b5f94e220c91843733d48dbbd001a3f64e7584418afdf81e2

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.3.31-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.3.31-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for imagecodecs-2021.3.31-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16d09aa395cd5df76f3f9b98458e47cc58d7522c4fc486cb1a9ecd0475e1fa38
MD5 25989edae6c5cde73a42d3782d4f727a
BLAKE2b-256 6b6c30f8f757d9c51278df6a459fd85a52fd68e51ded3c2a55f6d1f0ff253d77

See more details on using hashes here.

Supported by

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