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, zarr, 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, PGLZ (PostgreSQL LZ), RCOMP (Rice), ZFP, AEC, LERC, NPY, PNG, GIF, TIFF, WebP, JPEG 8-bit, JPEG 12-bit, Lossless JPEG (LJPEG, SOF3), JPEG 2000, JPEG LS, JPEG XR (WDP, HD Photo), 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.8.26

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.

MacOS wheels may not be available for latest releases. Consider using previous, conda-forge or macports releases.

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 a modified version of dcm2niix’s jpg_0XC3.cpp.

This software includes a modified version of PostgreSQL’s pg_lzcompress.c.

This software includes a modified version 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-zarr 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 libcfitsio-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, lerc, and zlibng 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.8.26

Pass 5502 tests. Add BLOSC2 codec via c-blosc2. Require LERC 3 and libjxl 0.5. Do not exceed literal-only size in PackBits encoder. Raise ImcdError if output is insufficient in PackBits codecs (breaking). Raise ImcdError if input is corrupt in PackBits decoder (breaking). Fix delta codec for non-native byteorder.

2021.7.30

Add support for more dtypes and axes argument in PackBits encoder. Fix worst case output size in PackBits encoder. Fix decoding AVIF created with older libavif. Fix decoding GIF with disposal to previous for first frame. Add lossless option in jpeg_encode.

2021.6.8

Fix building with Cython 0.3a7. Decode TIFF with JPEG compression, YCBCR or CMYK colorspace as RGB24. Vendor cfitsio/ricecomp.c for shared library builds on Windows (#18).

2021.5.20

Add ZLIBNG codec via zlib-ng library. Add RCOMP (Rice) codec via cfitsio library. Fix decoding of 16-bit JPEG with jpeg_decode. Relax user provided output array shape requirement.

2021.4.28

Change WebP default compression level to lossless. Rename jpegxl codec to brunsli (breaking). Add new JPEG XL codec via jpeg-xl library. Add PGLZ codec via PostgreSQL’s pg_lzcompress.c. Update to libtiff 4.3 and libjpeg-turbo 2.1. Enable JPEG 12-bit codec in manylinux wheels. Drop manylinux2010 wheels.

2021.3.31

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.8.26.tar.gz (10.4 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.8.26-cp310-cp310-win_amd64.whl (13.4 MB view details)

Uploaded CPython 3.10Windows x86-64

imagecodecs-2021.8.26-cp310-cp310-win32.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86

imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (28.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

imagecodecs-2021.8.26-cp39-cp39-win_amd64.whl (13.4 MB view details)

Uploaded CPython 3.9Windows x86-64

imagecodecs-2021.8.26-cp39-cp39-win32.whl (11.7 MB view details)

Uploaded CPython 3.9Windows x86

imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (28.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

imagecodecs-2021.8.26-cp39-cp39-macosx_10_9_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

imagecodecs-2021.8.26-cp38-cp38-win_amd64.whl (13.4 MB view details)

Uploaded CPython 3.8Windows x86-64

imagecodecs-2021.8.26-cp38-cp38-win32.whl (11.7 MB view details)

Uploaded CPython 3.8Windows x86

imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (28.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

imagecodecs-2021.8.26-cp38-cp38-macosx_10_9_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

imagecodecs-2021.8.26-cp37-cp37m-win_amd64.whl (13.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

imagecodecs-2021.8.26-cp37-cp37m-win32.whl (11.6 MB view details)

Uploaded CPython 3.7mWindows x86

imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (26.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

imagecodecs-2021.8.26-cp37-cp37m-macosx_10_9_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26.tar.gz
  • Upload date:
  • Size: 10.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26.tar.gz
Algorithm Hash digest
SHA256 e87994d918ea951a589ec46648c24d9c7e56b7b5c2466d93f3b07883f0ecea19
MD5 22178043e9852179842ab6263469c035
BLAKE2b-256 9a17333d539d7e445e021ffe7f98e5605418dcddbec20ae8d0aa4958d6172c27

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.8.26-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 567c480e437fd8f4e737d81abdf407f49a976a681a4493bc025f4e6578e3a882
MD5 bb24393c319f361679b9ac6e6b69a4e4
BLAKE2b-256 35dd84f47870cdcb177a4977a4aaaa1eb45a0853a26858d44d29ddf06aa5c6b7

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp310-cp310-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.8.26-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b884633e5b987e02db12c51ae39c50fcc53856e5eff59fa88d2240063084301a
MD5 d8494bc56f18f18fb1f271a59511d1cc
BLAKE2b-256 a8a9ba56153c4fba9b9b77f9127a6a63ab1ffe9e66abcdac713f67b15b82598b

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df92c5c6d7fa816f9e4b574db56883ca442d086ecd905bb3c8aefd3990e9a0b
MD5 a9f7e426eefbf44ae2eafee97a1627e4
BLAKE2b-256 7fe5f98dd17968a2eb2e719837d7e8a1c1e98849029813ff53bf7bb39c458093

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f7b636c55d1d91723b0f7eb753a92c753404e3fa9a3cbd79968a750c2e28079
MD5 8af46c57550586d5619676f133fdf6f0
BLAKE2b-256 c236c873515066861d8d33db48bc990481203ef8cf246e524fa6b95f10ba3a40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 834faca44edc762b24c3bd02533866e1f1cd07abf7ddcbe8f46035d84c8ce843
MD5 29b5a08c697da41cb28ea30475159750
BLAKE2b-256 5a1a54d8890c772ca2cf75d4ec72faf96edd75e31b17a6d45c399b2f5ea5bd50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 778832770ac0382e620c57590b02b4e7af73b12fafb7ecc55d1229dbacf8b310
MD5 ad392c1364ccfc38732e1e93f2eec84b
BLAKE2b-256 42d3fe6ca256dcfb4a4723e0eda1c024685d0f614a3dac1921ac4223388cd3cb

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18184ef1f61f465c1f31d963a475f4a45e4c407d8c4552184d440a8d1596ef38
MD5 1a802981d708188990418da70b05b39a
BLAKE2b-256 f7b28913a8bb1178d3ef76f7dc195802ead0385d00926c643995c3a55e502eab

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a4f49f41e2010e645287280d0ff93708edb538fee17bd929c12da51ab460b4a
MD5 e441d0f8722cdbd5ec3691a7270684c4
BLAKE2b-256 32bac761b85d0507fc35f689d319df13f4ed21dc54a004fc20737eea3f45a022

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 286cf79eb7bf186f8d92da029576f7650fc22806ec3c8008bfd15222dfe55fcc
MD5 eca233f11150e5a76f4745cf911653e9
BLAKE2b-256 3d79937bce33958c6d00410efc91718564b51233f1777151d1872da659e2dacc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 97735e890959671aa82d2882308d06675857297c64897c7147e5e58776a33a8c
MD5 f9ac60ddf512efb03befe695b3dc2704
BLAKE2b-256 bf348047fe8a3f2be1d88f2fdbbf9d5a51fdee71247fe2c6b4d550d48226a275

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 886096711a6a5aa416dbd252dd7e0eafe5dc1696ec664b0c52e546a2ed6059eb
MD5 33aa833ca7e0f0b92c2794d6f9e98b54
BLAKE2b-256 b4a269008da4ec586d18111981e4f761fdda5f57c5a6e96a385c13164537d5a2

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d130468ae09bb75adc98b21608ff72b9a7b6edcfc112ccbf1f77acd611d978a
MD5 320f3406e6f0992541ed1f195f2166e1
BLAKE2b-256 ec4086641e04ccb3bad372b3014154df529e22d98df49d49c9938eb93f4b2021

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76f6987aef1cc5db7ea06db8a365c10759cddb8415193c46552ea00bf2ba425c
MD5 9721d5d5a1abbb2a358e2278facdd811
BLAKE2b-256 322a710d0c62c16f5b2645a97f205ff6d6d986f427d3936895b5a9c05fee0b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a4d8a0ac013eba08e6eae1964eeb82120ddd144c056a99e000769e6e1775ff1
MD5 70e56e71c249760b47d2efb45b6d9d71
BLAKE2b-256 88ab51c099f7a3c818449dde45a87b1bab81872a23b16bec0a6f20b0a8d8dad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6a1ab00f6f6f449b8adf5da563bdf3dcf57ab4face60ae625c64bec4648def42
MD5 3f5b8776897d55811cbd9818fd786fdd
BLAKE2b-256 707e737a48fe7268a595efb87ecaa49b110859a1cc2fa713456570f518cd826e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b5d189951198600f2c8d7a55e0517371e72c88d6741285bae14723f01f111034
MD5 419f2141565367d5b9dfb570cea2bb4e
BLAKE2b-256 a18508e4bb92f5ce49287f684ad59e535aa6bb35a5489a6039562d42d47a325d

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 239a0692fbd99b6e3773a8a49df44ddc0651956d5b27dc6086b1dc2e6e3e0c83
MD5 31f473b9f3ddff154566586593f517f4
BLAKE2b-256 910a447468e263bad7f2aa57b2a131359a2b0fec0949362e6f0b0decbc8f5d3f

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imagecodecs-2021.8.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eef3b30bc4e492dacc6a2fa5dd0231807f3e33b88a0101d608071160c1bbda00
MD5 45cfc95a6df8dd28b8f1556ea136cd6f
BLAKE2b-256 d0c7654047c7db054954c4a5b235ac8033c8a9438360d63fc3f78efd4d0349ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: imagecodecs-2021.8.26-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6

File hashes

Hashes for imagecodecs-2021.8.26-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96f6a084e48274d94fb69a51d3cf19db6329d8ed5c2005695613a876145ec28b
MD5 5c3ba2ab721d06158dc75d2f209a3e5e
BLAKE2b-256 0bcc1a961baaebd9336d7bfa11aa138ebf514eab75e5ee5394a51a9ccd1f5893

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