Skip to main content

A Python wrapper for libjpeg, with a focus on use as a plugin for for pylibjpeg

Project description

Build status Test coverage PyPI versions Python versions Code style: black

pylibjpeg-libjpeg

A Python 3.8+ wrapper for Thomas Richter's libjpeg, with a focus on use as a plugin for pylibjpeg.

Linux, MacOS and Windows are all supported.

Installation

Dependencies

NumPy

Installing the current release

pip install pylibjpeg-libjpeg

Installing the development version

Make sure Python and Git are installed. For Windows, you also need to install Microsoft's C++ Build Tools.

git clone --recurse-submodules https://github.com/pydicom/pylibjpeg-libjpeg
python -m pip install pylibjpeg-libjpeg

Supported JPEG Formats

Decoding

ISO/IEC Standard ITU Equivalent JPEG Format
10918 T.81 JPEG
14495 T.87 JPEG-LS
18477 JPEG XT

Encoding

Encoding of JPEG images is not currently supported

Supported Transfer Syntaxes

Decoding

UID Description
1.2.840.10008.1.2.4.50 JPEG Baseline (Process 1)
1.2.840.10008.1.2.4.51 JPEG Extended (Process 2 and 4)
1.2.840.10008.1.2.4.57 JPEG Lossless, Non-Hierarchical (Process 14)
1.2.840.10008.1.2.4.70 JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1])
1.2.840.10008.1.2.4.80 JPEG-LS Lossless
1.2.840.10008.1.2.4.81 JPEG-LS Lossy (Near-Lossless) Image Compression

Usage

With pylibjpeg and pydicom

from pydicom import dcmread
from pydicom.data import get_testdata_file

ds = dcmread(get_testdata_file('JPEG-LL.dcm'))
arr = ds.pixel_array

Standalone JPEG decoding

You can also decode JPEG images to a numpy ndarray:

from libjpeg import decode

with open('filename.jpg', 'rb') as f:
    # Returns a numpy array
    arr = decode(f.read())

# Or simply...
arr = decode('filename.jpg')

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

pylibjpeg_libjpeg-2.4.0.tar.gz (676.5 kB view details)

Uploaded Source

Built Distributions

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

pylibjpeg_libjpeg-2.4.0-cp314-cp314-win_amd64.whl (750.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pylibjpeg_libjpeg-2.4.0-cp314-cp314-win32.whl (736.8 kB view details)

Uploaded CPython 3.14Windows x86

pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_11_0_arm64.whl (599.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl (639.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pylibjpeg_libjpeg-2.4.0-cp313-cp313-win_amd64.whl (751.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pylibjpeg_libjpeg-2.4.0-cp313-cp313-win32.whl (735.0 kB view details)

Uploaded CPython 3.13Windows x86

pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_11_0_arm64.whl (599.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl (638.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pylibjpeg_libjpeg-2.4.0-cp312-cp312-win_amd64.whl (751.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pylibjpeg_libjpeg-2.4.0-cp312-cp312-win32.whl (735.2 kB view details)

Uploaded CPython 3.12Windows x86

pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (600.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl (639.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pylibjpeg_libjpeg-2.4.0-cp311-cp311-win_amd64.whl (751.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pylibjpeg_libjpeg-2.4.0-cp311-cp311-win32.whl (735.0 kB view details)

Uploaded CPython 3.11Windows x86

pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (600.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl (636.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pylibjpeg_libjpeg-2.4.0-cp310-cp310-win_amd64.whl (751.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pylibjpeg_libjpeg-2.4.0-cp310-cp310-win32.whl (735.3 kB view details)

Uploaded CPython 3.10Windows x86

pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (600.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl (636.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pylibjpeg_libjpeg-2.4.0.tar.gz.

File metadata

  • Download URL: pylibjpeg_libjpeg-2.4.0.tar.gz
  • Upload date:
  • Size: 676.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0.tar.gz
Algorithm Hash digest
SHA256 2798ca404a8834447efefa89a03563ce93abdbe4146ea35901680f975959f501
MD5 ad7590eff46ee527522ded18c2d5a44e
BLAKE2b-256 732d50e07dc574183da13bd4ccc3f300072cc47457bb70b5ff3ba5f17f920914

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0.tar.gz:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 980ed0c8e74b58082105c4dd39e5e2cae7f962c971d8d60c96eaf2735cbe973a
MD5 834ed9a7b812a58c8095f9667418dacc
BLAKE2b-256 70fd3c9ab790e2da93ea1d9303974d81d65447843bdd8210693576d2eeadc8f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-win_amd64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 679817baf7c2f7d6e32a89b36ee72a606c2eafd3d143117547d7f2a5d6c5de4b
MD5 a29dda182318c438d01622c3037a8a29
BLAKE2b-256 ae574a48b134f368ac11e1e464878670acd84832e5bc8b3c2e028805b54976da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-win32.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 956c0c43af1318a19375f94580d2ce8e314aaa7ab34938457db234eeb8d6b9b9
MD5 20d53f640de4e125755d41399876afa2
BLAKE2b-256 149789cb2bd3e7df5ec783706c88d0f9037a8f605461321bbee2864520feea15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d0a534917ff7f7243e0fefdfa4d4397b23ac9e084a5aa8dcbcf9fae8f2745ba7
MD5 95f6086070e1681b2c9a5c8c61cbce40
BLAKE2b-256 8c6ecf4d044cf47fe69586d9a8e3936df53de92a609d38434f322201e192e68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afb3433e38733b2bb627be9e893f44eb5bff4eba71fe0eef746ea2b27a288956
MD5 0884d91bf171d232e3cfbb6208d41d66
BLAKE2b-256 42e5d008b9e0fb71dc12ff020d6a94c2a414d99050bce474dc51a1890c11c487

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4595c140958b0f9fa2ebfde234c5b4f2804fae081e787aa2043f4b354e0e51c8
MD5 cfb31d8df7e55e1c1750c5008fa80f7b
BLAKE2b-256 a0edb4fa642d1cf4d03d5847d0cb0c72be06f1df1be592024049e655c59a1d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb0f2ee4eb5f9bf4cff2905f3eacd7eefda5bc8b1e82959110593781c5b52bea
MD5 6a3e9f5cc8fc92b8478720134c044ae7
BLAKE2b-256 db46677c890f45e7c9aa439bcc21895c7d2f183707ee449f00af783cf26d910c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-win_amd64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1817c9bfcc6304cac87c5cfa797d2b6c71d1f6ea756a5f75509f0aa9b69f4816
MD5 f63dd79eaee4c37a9d900b668aa110ec
BLAKE2b-256 a30473874a05749e1d5c428ed0e683c3f2077e648fec7f8612c3b12c5d5dfa5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-win32.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f43fb5364fc28d9de21e03bdf679d0bd441b576de4c9c9577d79afb2f1aebcf9
MD5 edb2c77dc2bae38d29de802973a78f7a
BLAKE2b-256 76d134a7bfab2eddac9ed9f58d16319b689248db8a4d707fa5c50234add465fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d2c8da12c79d1f46596b89df94091be01f932d739613e8af93d1d557ac3bab74
MD5 c80b4db00f894abb8f7f4071b73c2d75
BLAKE2b-256 77000a07d56c596793135bc61bcace6267ad68e5a36b9dc53e9fd7f48dac865d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 486ac6f48db8c40ea4b5f5d81cca5df9ed2445f39c8b21a75d127a7c53b17c9c
MD5 55bc2cdc924807fa37b87767bb86dc8e
BLAKE2b-256 ddbe9e8b246ac4d0306412566e06e215185cf3ab934f9ae9f98381d12f9ecd62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b1dc3d8dfdc6df8e8682833f7cb477bc380d7404de36d1e6a8840810c5b9f4fd
MD5 b4f258626df7b2d76df04c795aca4319
BLAKE2b-256 9ea768e637c7cc9d0db84249a007439040315889f5561c20233ae48cb3a0fb16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 555620be7243bccd7e9ac2ad953be316e36e62cf9d4d105cc3ed6f0ef384fd24
MD5 8dc2fb7a9242caa52686593f6fa805b8
BLAKE2b-256 0b7e3b366fd6b342b965b802bf029c11279244bc8aa560dc861fd4f12a5b47be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-win_amd64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 aae203842013261e18a9b02a8c01c06d7455744798f15f64d62730c91f8cfc2d
MD5 9f2ae2c2bace13c023f326b103ee7750
BLAKE2b-256 5e7e7525a3f4145e0d0ac1ae1a0b06899eeb550a0da893869d4e00e797711dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-win32.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d06b851eafc08393a8cdc32490d60fef1ab7788c7a37695f3d5287f02f02eefa
MD5 896299a9501163b3ee028c20c5acc5f4
BLAKE2b-256 fb9f7dbcdf411baede2e67c416b761553ec38e2fe7746ebc0a30dabee87db2c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 01d950ef496476a9223e4966376cb88098fcf5c55a12a21f722d7b5f84daae43
MD5 c39d50e0fcceb09145498951abb6cbad
BLAKE2b-256 9a63b31ac951213947c48511431ef1a4aada69092158550593f7133021ba1c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4a242bb32f3a2e90f417724817b0baeeddf2cf62a9c909418e35bcfb6d35f26
MD5 d006dccb91815d30b624afb0965d89a6
BLAKE2b-256 586659e8b3acae4784505e8b777be35ad80c9a03534ff3570662f3ec8a143ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ea85fe3ca941085240e162d305e586992f0912ccefc2ccadf7c8378562f659d
MD5 640f97f2495bf196c935a627cfc3c829
BLAKE2b-256 5e706fcf9edfda59c38469ea70c036979806832fffc73c597c159ea2db0eb615

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37ca56101200e9902e5f004c0419c78d8a7cbe35ffb12de5db71b8c29b5d204f
MD5 9318bdc49906fffb173a0650153a37c8
BLAKE2b-256 d81a65cfb37ca68804cce1fd2f26e74d12687f48a37651cbf5833c233ca01781

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-win_amd64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d01b9f88978e13cd87c57b88af2f33dfbfd4c641f39409cd2374315ff258713
MD5 769a4bf49da084ed9c6672f9fd26cb01
BLAKE2b-256 2b99be40cc8eab5fe61c4466acb5a53dd4f5f0c596a9cd38084bbfa3344e8d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-win32.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82704d1e6ae20f0d9ed39087381b23b6a374743f9a54a69b8f2c53ec7ccdea49
MD5 b9fa274741b5b622a793fa1ab0572a15
BLAKE2b-256 93229b08326cfb77c63cd2f215f519881f9bf8c833956267e780bedd12697c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fb7632e2b26187a038b5c52a5da7d5fedd8add8467d3054c423179bd8e4b5c72
MD5 0dfc428dfcca947953ff692d26caba1f
BLAKE2b-256 d9a2351b9602b686692e2ba84fe9fb69b239e034ce0ecc5328592528b46326b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da20eff91df16fd03101ac99fcd4ab18c86b5fb88c982e5dee8c167c1b991e0b
MD5 86a2196854361c61b3925eab3a7b37d0
BLAKE2b-256 ea4664e1afc200317b6113c142e5b62b6efaff805114274733e2667fbfb042bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bcbddc2a53eff6d61784bd407baa63410a821856474a7756fa2400ff427a71a0
MD5 6f03c6baee020f3a8708a24c69939d34
BLAKE2b-256 c1edeccb1e46e542fa2e058dbb57f7b43e8f22430a24be0a4a6e41099ba73b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 490f33eec9e851105a4261eb374d177067e28d903d4285527dd84273fc2fbb15
MD5 043b501d9aa8d4a6a52dddbd05611458
BLAKE2b-256 089e27a6ed696113fd25e7dd6767994a0c438d8aaa997f2750896681f7ebbc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-win_amd64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cfce86719a694543065f3004ef7f64700537c491a3eb7998e7c981eb502a547d
MD5 4e9a32caf76a0c2c3fb371a9336dbfb1
BLAKE2b-256 fac681296108fd234f1864994e1e7ba70dc020f9ff555757f84decf43d3c10d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-win32.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6187cd35defa6000780b21e33a66410b655b84b891cfca2f6f53cdf29eeed08b
MD5 910010458921be7903fb966378b1933c
BLAKE2b-256 4ef70b51a4469b841a3049b0431ad37a5f47c733aeab7c9975af123b90139b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d54ab882a641758a357c7fa90d7abdd7b5ef8d83c2ffb729979dc1e710c784cd
MD5 ea59f98b33955ae3fff3302d1fbdcc3f
BLAKE2b-256 d6fdfb265832fb1fd035f434a2171b23812528012915df838c3d5db4f74cfcf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ca2ea00e3d721cecadfc1cddeb7aeeb26fa6157ed8faef2f2fef3dca43afe76
MD5 818e045c8c2b547405ee289dce2e79f8
BLAKE2b-256 9123a478cc33b711623780e52ee3bb66bee58b276ebdd2c24310a83db97f3b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 948c9ef2ec4305e962fa78c84d1a51b696d88e21aabfd875c285462d3a436a2c
MD5 ddd199108c1ba814bcc8a752520e5470
BLAKE2b-256 efcb4249fd89faebe5391e4db3905c4fb12b153d43ad9b814d7dca426aee1dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibjpeg_libjpeg-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release-wheels.yml on pydicom/pylibjpeg-libjpeg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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