| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search | 
| Name: python311-imagecodecs | Distribution: openSUSE:Factory:zSystems | 
| Version: 2022.12.24 | Vendor: openSUSE | 
| Release: 1.4 | Build date: Tue Mar 21 00:51:57 2023 | 
| Group: Unspecified | Build host: s390zl26 | 
| Size: 8588665 | Source RPM: python-imagecodecs-2022.12.24-1.4.src.rpm | 
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/cgohlke/imagecodecs/ | |
| Summary: Image transformation, compression, and decompression codecs | |
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 imaging 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).
BSD-3-Clause
* Sat Jan 21 2023 Ben Greiner <code@bnavigator.de>
  - Update to 2022.12.24
    * Pass 6512 tests.
    * Fix PNG codec error handling.
    * Fix truncated transferfunctions in cms_profile (#57).
    * Fix exceptions not raised in cdef functions not returning
      Python object.
  - Release 2022.12.22
    * Require libtiff 4.5 (breaking).
    * Require libavif 0.11 (breaking).
    * Change jpegxl_encode level parameter to resemble libjpeg
      quality (breaking).
    * Add LZFSE codec via lzfse library.
    * Add LZHAM codec via lzham library.
    * Fix AttributeError in cms_profile (#52).
    * Support gamma argument in cms_profile (#53).
    * Raise limit of TIFF pages to 1048576.
    * Use libtiff thread-safe error/warning handlers.
    * Add option to specify filters and strategy in png_encode.
    * Add option to specify integrity check type in lzma_encode.
    * Fix DeprecationWarning with NumPy 1.24.
* Sun Oct 09 2022 John Vandenberg <jayvdb@gmail.com>
  - Update imagecodecs_distributor_setup.py to skip unbuildable exts
  - Refresh always-cythonize.patch
  - Enable s390x & ppc64 builds
  - Update to v2022.9.26
    * Pass 6357 tests.
    * Support JPEG XL multi-channel (planar grayscale only) and multi-frame.
    * Require libjxl 0.7 (breaking).
    * Switch to Blosc2 API and require c-blosc 2.4 (breaking).
    * Return LogLuv encoded TIFF as float32.
    * Add RGBE codec via rgbe.c.
  - from v2022.8.8
    * Drop support for libjpeg.
    * Fix encoding JPEG in RGB color space.
    * Require ZFP 1.0.
  - from v2022.7.31
    * Add option to decode WebP as RGBA.
    * Add option to specify WebP compression method.
    * Use exact lossless WebP encoding.
  - from v2022.7.27
    * Add LZW encoder.
    * Add QOI codec via qoi.h
    * Add HEIF codec via libheif
    * Add JETRAW codec via Jetraw demo (source only).
    * Add ByteShuffle codec, a generic version of FloatPred.
    * Replace imcd_floatpred by imcd_byteshuffle (breaking).
    * Use bool type in imcd (breaking).
  - from v2022.2.22
    * Fix jpeg numcodecs with tables
    * Add APNG codec via libpng-apng patch.
    * Add lossless and decodingspeed parameters to jpegxl_encode
    * Add option to read JPEG XL animations.
    * Add dummy numthreads parameter to codec functions.
    * Set default numthreads to 1 (disable multi-threading).
    * Drop support for Python 3.7 and numpy < 1.19 (NEP29).
  - from v2021.11.20
    * Fix testing on pypy and Python 3.10.
  - from v2021.11.11
    * Require libjxl 0.6.x.
    * Add CMS codec via Little CMS library for color space transformations (WIP).
    * Add MOZJPEG codec via mozjpeg library (Windows only).
    * Add SPNG codec via libspng library.
    * Rename avif_encode maxthreads parameter to numthreads (breaking).
    * Accept n-dimensional output in non-image numcodecs decoders.
    * Support masks in LERC codec.
    * Support multi-threading and planar format in JPEG2K codec.
    * Support multi-resolution, MCT, bitspersample, and 32-bit in jpeg2k encoder.
    * Change jpeg2k_encode level parameter to fixed quality psnr (breaking).
    * Change jpegxl_encode effort parameter default to minimum 3.
    * Change JPEG encoders to use YCbCr for RGB images by default.
    * Replace lerc_encode planarconfig with planar parameter (breaking).
    * Add option to specify omp numthreads and chunksize in ZFP codec.
    * Set default numthreads to 0.
    * Fix Blosc default typesize.
    * Fix segfault in jpegxl_encode.
    * Replace many constants with enums (breaking).
  - from v2021.8.26
    * Add BLOSC2 codec via c-blosc2 library.
    * 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.
  - from v2021.7.30
    * Support 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.
* Wed Jun 30 2021 Ben Greiner <code@bnavigator.de>
  - Update to 2021.6.8
    * Pass 5185 tests.
    * 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).
  - Release 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.
  - Release 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.
  - Release 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.
  - drop imagecodecs-pr15-test_jpegls.patch fixed upstream-
  - refresh always-cythonize.patch
* Wed Mar 10 2021 Ben Greiner <code@bnavigator.de>
  - Update to version 2021.2.26
    Pass 4915 tests. Support X2 and X4 floating point predictors
    (found in DNG).
  - enable additional codecs through imagecodecs_distributor_setup.py
  - Add imagecodecs-pr15-test_jpegls.patch
    gh#cgohlke/imagecodecs#15
  - disable builds for big-endian platforms as per upstream README
* Mon Feb 01 2021 Ben Greiner <code@bnavigator.de>
  - Update to version 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.
  - refresh always-cythonize.patch
  - drop zopfli-headers.patch fixed upstream
  - Add more testing requirements to test backends
  - Add skip reporting to pytest to see what is still missing
* Tue Jan 12 2021 andy great <andythe_great@pm.me>
  - Update to version 2021.1.11.
    * Fix build issues (#7, #8).
    * Return bytearray instead of bytes on PyPy.
    * Raise TypeError if output provided is bytes (breaking).
  - Updates for version 2021.1.8
    * Add float24 codec.
    * Update copyrights.
  - Updates for version 2020.12.24
    * Update dependencies and build scripts.
  - Updates for version 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).
  - Rebase always-cythonize.patch
  - Rebase zopfli-headers.patch
* Fri Aug 28 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Switch to multibuild to not cycle
* Fri Aug 28 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Add patch to enforce cythonization:
    * always-cythonize.patch
  - Add patch to locate zopfli headers properly:
    * zopfli-headers.patch
* Fri Aug 28 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 2020.5.30:
    * pythhon3 only
    * add support for more codecs
* Mon May 25 2020 Petr Gajdos <pgajdos@suse.com>
  - %python3_only -> %python_alternative
* Thu Apr 23 2020 Tomáš Chvátal <tchvatal@suse.com>
  - As the package is marked as py3 only drop the python2 deps
/etc/alternatives/imagecodecs /usr/bin/imagecodecs /usr/bin/imagecodecs-3.11 /usr/lib64/python3.11/site-packages/imagecodecs /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/INSTALLER /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/LICENSE /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/METADATA /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/RECORD /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/REQUESTED /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/WHEEL /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/entry_points.txt /usr/lib64/python3.11/site-packages/imagecodecs-2022.12.24.dist-info/top_level.txt /usr/lib64/python3.11/site-packages/imagecodecs/__init__.py /usr/lib64/python3.11/site-packages/imagecodecs/__main__.py /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__ /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/__main__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/__main__.cpython-311.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/_imagecodecs.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/_imagecodecs.cpython-311.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/imagecodecs.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/imagecodecs.cpython-311.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/numcodecs.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/imagecodecs/__pycache__/numcodecs.cpython-311.pyc /usr/lib64/python3.11/site-packages/imagecodecs/_aec.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_avif.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_bitshuffle.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_blosc.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_brotli.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_bz2.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_cms.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_deflate.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_gif.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_heif.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_imagecodecs.py /usr/lib64/python3.11/site-packages/imagecodecs/_imcd.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_jpeg2k.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_jpeg8.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_jpegls.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_jpegsof3.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_jpegxr.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_ljpeg.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_lz4.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_lzf.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_lzfse.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_lzham.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_lzma.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_pglz.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_png.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_qoi.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_rcomp.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_rgbe.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_shared.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_snappy.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_spng.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_tiff.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_webp.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_zfp.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_zlib.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_zlibng.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_zopfli.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/_zstd.cpython-311-s390x-linux-gnu.so /usr/lib64/python3.11/site-packages/imagecodecs/imagecodecs.py /usr/lib64/python3.11/site-packages/imagecodecs/numcodecs.py /usr/share/doc/packages/python311-imagecodecs /usr/share/doc/packages/python311-imagecodecs/README.rst /usr/share/licenses/python311-imagecodecs /usr/share/licenses/python311-imagecodecs/LICENSE /usr/share/licenses/python311-imagecodecs/LICENSE-aom /usr/share/licenses/python311-imagecodecs/LICENSE-bitshuffle /usr/share/licenses/python311-imagecodecs/LICENSE-blosc /usr/share/licenses/python311-imagecodecs/LICENSE-brotli /usr/share/licenses/python311-imagecodecs/LICENSE-bzip2 /usr/share/licenses/python311-imagecodecs/LICENSE-cfitsio /usr/share/licenses/python311-imagecodecs/LICENSE-charls /usr/share/licenses/python311-imagecodecs/LICENSE-dav1d /usr/share/licenses/python311-imagecodecs/LICENSE-fastlz /usr/share/licenses/python311-imagecodecs/LICENSE-giflib /usr/share/licenses/python311-imagecodecs/LICENSE-highway /usr/share/licenses/python311-imagecodecs/LICENSE-jpeg /usr/share/licenses/python311-imagecodecs/LICENSE-jpg_0xc3 /usr/share/licenses/python311-imagecodecs/LICENSE-jxrlib /usr/share/licenses/python311-imagecodecs/LICENSE-lcms2 /usr/share/licenses/python311-imagecodecs/LICENSE-libaec /usr/share/licenses/python311-imagecodecs/LICENSE-libaivf /usr/share/licenses/python311-imagecodecs/LICENSE-libdeflate /usr/share/licenses/python311-imagecodecs/LICENSE-libjpeg /usr/share/licenses/python311-imagecodecs/LICENSE-libjpeg-turbo /usr/share/licenses/python311-imagecodecs/LICENSE-liblj92 /usr/share/licenses/python311-imagecodecs/LICENSE-liblzma /usr/share/licenses/python311-imagecodecs/LICENSE-libmng /usr/share/licenses/python311-imagecodecs/LICENSE-libpng /usr/share/licenses/python311-imagecodecs/LICENSE-libspng /usr/share/licenses/python311-imagecodecs/LICENSE-libtiff /usr/share/licenses/python311-imagecodecs/LICENSE-libwebp /usr/share/licenses/python311-imagecodecs/LICENSE-lz4 /usr/share/licenses/python311-imagecodecs/LICENSE-lzf /usr/share/licenses/python311-imagecodecs/LICENSE-lzfse /usr/share/licenses/python311-imagecodecs/LICENSE-lzham /usr/share/licenses/python311-imagecodecs/LICENSE-openjpeg /usr/share/licenses/python311-imagecodecs/LICENSE-postgresql /usr/share/licenses/python311-imagecodecs/LICENSE-qoi /usr/share/licenses/python311-imagecodecs/LICENSE-rav1e /usr/share/licenses/python311-imagecodecs/LICENSE-snappy /usr/share/licenses/python311-imagecodecs/LICENSE-zfp /usr/share/licenses/python311-imagecodecs/LICENSE-zlib /usr/share/licenses/python311-imagecodecs/LICENSE-zlib-ng /usr/share/licenses/python311-imagecodecs/LICENSE-zopfli /usr/share/licenses/python311-imagecodecs/LICENSE-zstd /usr/share/licenses/python311-imagecodecs/PATENTS-rav1e
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Oct 31 00:36:47 2025