Python interface for libheif library
Project description
pi-heif
This is a light version of Pillow-Heif with more permissive license for binary wheels.
It includes only HEIF decoder and does not support save operations.
All codebase are the same, refer to pillow-heif docs.
The only difference is the name of the imported project.
Install
python3 -m pip install -U pip
python3 -m pip install pi-heif
Example of use as a Pillow plugin
from PIL import Image
from pi_heif import register_heif_opener
register_heif_opener()
im = Image.open("images/input.heic") # do whatever need with a Pillow image
im.show()
8/10/12 bit HEIF to 8/16 bit PNG using OpenCV
import numpy as np
import cv2
import pi_heif
heif_file = pi_heif.open_heif("image.heic", convert_hdr_to_8bit=False, bgr_mode=True)
np_array = np.asarray(heif_file)
cv2.imwrite("image.png", np_array)
Get decoded image data as a Numpy array
import numpy as np
import pi_heif
if pi_heif.is_supported("input.heic"):
heif_file = pi_heif.open_heif("input.heic")
np_array = np.asarray(heif_file)
Accessing Depth Images
from PIL import Image
from pillow_heif import register_heif_opener
import numpy as np
register_heif_opener()
im = Image.open("../tests/images/heif_other/pug.heic")
if im.info["depth_images"]:
depth_im = im.info["depth_images"][0] # Access the first depth image (usually there will be only one).
# Depth images are instances of `class HeifDepthImage(BaseImage)`,
# so work with them as you would with any usual image in pillow_heif.
# Depending on what you need the depth image for, you can convert it to a NumPy array or convert it to a Pillow image.
pil_im = depth_im.to_pillow()
np_im = np.asarray(depth_im)
print(pil_im)
print(pil_im.info["metadata"])
Wheels
| Wheels table | macOS Intel |
macOS Silicon |
Windows |
musllinux* | manylinux* |
|---|---|---|---|---|---|
| CPython 3.10 | ✅ | ✅ | ✅ | ✅ | ✅ |
| CPython 3.11 | ✅ | ✅ | ✅ | ✅ | ✅ |
| CPython 3.12 | ✅ | ✅ | ✅ | ✅ | ✅ |
| CPython 3.13 | ✅ | ✅ | ✅ | ✅ | ✅ |
| CPython 3.14 | ✅ | ✅ | ✅ | ✅ | ✅ |
| CPython 3.14t | ✅ | ✅ | ✅ | ✅ | ✅ |
| PyPy 3.11 v7.3 | ✅ | ✅ | ✅ | N/A | ✅ |
* x86_64, aarch64 wheels.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pi_heif-1.3.0.tar.gz.
File metadata
- Download URL: pi_heif-1.3.0.tar.gz
- Upload date:
- Size: 17.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58151840d0d60507330654a466b06cbf7ca8fb3759eadb5234d70b4dc2bc990c
|
|
| MD5 |
68ac5710b46929aef3cff3276347cb52
|
|
| BLAKE2b-256 |
344a4a18057a7b64254abdcc4f78d92503fc4f5b8fcc66da118ba87989111ee8
|
File details
Details for the file pi_heif-1.3.0-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28fde66eb57dae59bae151e6d51f362d05bb52c52ec82dbe09649e9b3c4e633d
|
|
| MD5 |
3964320895db1aefe2ad13133183cdc6
|
|
| BLAKE2b-256 |
424e59acac0719f67475f3a4305daf7e66c0ee878999bf15e60b9622ff68ef84
|
File details
Details for the file pi_heif-1.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f378ca0bc5f9c8bef69911c9a1965f2469cff67f3e2a8c1c17c535733e3767e
|
|
| MD5 |
60573dc794e3377e8a550c95c9866d84
|
|
| BLAKE2b-256 |
29aeac8fac4afbafeeb63f02e4faad05b1fcc2e3e8c8903fe3c3d669b27bf14a
|
File details
Details for the file pi_heif-1.3.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5827ccf996649b32c473ea965cde3b5221734b5d366242348038c819ff7ae33
|
|
| MD5 |
e09d1c3f55c63f5d717d596b9e9c67f8
|
|
| BLAKE2b-256 |
fb309b9d61c429d8e6e3bc867c3fd13a3cb80579d53aea143de57d74ce7b390d
|
File details
Details for the file pi_heif-1.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 938.8 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cb3e208171db38926b48feaa874365e37f2ff98389cb9dc8d3cfbd027114e63
|
|
| MD5 |
728d4898f26a9f3aebb14de8ef81f95f
|
|
| BLAKE2b-256 |
ef7bfaa0b54c6598afc8880c6d63914cfdc8f30569dbba96cb649aeaea2dff76
|
File details
Details for the file pi_heif-1.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9b8a8f91336e64d9f5c334ca769ccb1063452043bac7297ab8048f424bd4b92
|
|
| MD5 |
01249b69297c351195c806ebb4623683
|
|
| BLAKE2b-256 |
69c854667ba54daac7e0abf84044bcace1c75df4bf3cf6caf9eec1f8a8b510cb
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eba226ab71b1f6fde28a020bc3aeb4c6f2daad1cb7784f7dd57f85f9ef204892
|
|
| MD5 |
88143c29e43f2310066c3cfb1def299d
|
|
| BLAKE2b-256 |
bebe83f6f42c1a82cd3eb4a4d85abad9dbf917d4340ece240ba403ee4150de88
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
437f424d8d8bad9f4f23ee4febd8e93b4a2800746e45f676f4543435a7938ca1
|
|
| MD5 |
bfea102e07eee6bfe339b214ff5352dd
|
|
| BLAKE2b-256 |
575aaf51148cf5804a120615548e5ec2fee2f22c19b1d88a0ee705a9f09b9f75
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95651a2a628ea1560e9f2669f9bb58ecbd02436cc52b6a8f2fff91d4f73107fb
|
|
| MD5 |
1163b5578d42aac00ef27f0a20d0a033
|
|
| BLAKE2b-256 |
d255f76fba8d8ca1b95d89673e72067455ea1ba85c8d4cacacb0cee4c4882f52
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86d10a002567de7e7b2da6ae993fb5c99d6f6a727c9b457e238987b047ad7f98
|
|
| MD5 |
b59dee150c37354b5c046f123a0f537d
|
|
| BLAKE2b-256 |
77aab8fb005c0e09dfee67fc4965d12bee41a2333e004574e47e1290a16bf851
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ea595ea1fdd64dbcc29e4ab4e84902b22ef16812a12f459e876b3928d35c848
|
|
| MD5 |
2240a06e75ae0d05d6bc8d8225eaf666
|
|
| BLAKE2b-256 |
5c2175c676f96307eef0da33955481658adbedfff85c37f943b9ed528f633a76
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 943.1 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42db92eb41825e9a3cb58a497bd382e61478dd4e2b0e531cdec3f5ddc2f6cefc
|
|
| MD5 |
ef3981e31fcccec0b8f588077f08dbc9
|
|
| BLAKE2b-256 |
33066b7f6f7e7d5bb08c720d04b15c67d4802154d4516feb371e46dd3d0f6698
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ffaf9a8a73c686cf6c24aedc9151f06c776591db47ff4245ee8a41a23f1cd22
|
|
| MD5 |
45e3aa161262216b050586f7dd844557
|
|
| BLAKE2b-256 |
952a03baff344d2d664ca955c8d8797920bae49d66c8928134c0a071ab6e0319
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
caefadb3a8fcfb7857cd065038b24263b286ddd2ecfd8c8a6c01618d00cc8543
|
|
| MD5 |
9fb890328922b4a7c3cc67a07b47a0ba
|
|
| BLAKE2b-256 |
606b42a1f0c4544d77d87116bb9ca77040566254ec45de5bca5e7201e0b56a6e
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71f568ec93271bedd53917e59f617cf2410dbd8ca307e4bd55e319110d253bc1
|
|
| MD5 |
1c92e36d32f353c5fab209de6bb6b7b8
|
|
| BLAKE2b-256 |
e57c26bdeb9f632058d8558e409c37dddd069e58c726286247d693ecef833516
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc2cd95a871d26d604d2a6bbf99c4e7644afbe0d302cdf34065deca41f8a2c30
|
|
| MD5 |
f9ed7caf9a2620927e8ae6210b32712c
|
|
| BLAKE2b-256 |
2a5c62f7be4abb279c8ff69bad8c811cdb1224618ab0c5c857ffdb9b4149dc28
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f84471adc59a80b06476aba241cfd7c56550ba891a3b6525f5b7aa8eadf8166b
|
|
| MD5 |
46b205958c1094b5c0de304b8c65fe5e
|
|
| BLAKE2b-256 |
563c93fb4aa1734722d4182ad521832c8e5009934d453b157e994b36e4444c02
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab4764fbf8ec958c6c2b3643a2fa313a7f0275649783ce99ed68a1ce5b71ea96
|
|
| MD5 |
8556eee85be4e10b6fc4f562e2fbdbd7
|
|
| BLAKE2b-256 |
f92b2a07a116a843a70b4f1320d75727ec2ab616609a4f84201fcbeb72afc685
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 942.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e224db6932794bde6d18a2f4e417785a3944b8a61a6b582d8473026b5cdf0408
|
|
| MD5 |
d725ce8d2ce5cc2e0f9daa9251d989b2
|
|
| BLAKE2b-256 |
86feb99741aa4ebd31a28ed4f1bb5703b242211b2968aec15f574a7c75993c89
|
File details
Details for the file pi_heif-1.3.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c00a918a20fb8da1883b3142506c0acb52ecff7901014962aa8d30b3ab78a5e2
|
|
| MD5 |
9dfbe74d3032f15b3d31c5b93d8f2ccd
|
|
| BLAKE2b-256 |
eae6a4c05ae1fe025f5fe3839b8ab277a6dc861c5feac5214e286bc277ae5ae3
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ce66f8ce661f5fb15e73ed91f697cec116ce41a6c6849e8b70ead1d3ad60973
|
|
| MD5 |
ee0c4948bf006ed593b71f6a01717380
|
|
| BLAKE2b-256 |
c96f5c246d55bcdcfbfdc3d43dbc29c8a845c6b1c7739c4c88b0b29b93956003
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74488dc873986f584beb27c25fa1484a9d9ae10272f442a2571ca771915c28ea
|
|
| MD5 |
06f8ad54eb44fe034339fc3b80466d47
|
|
| BLAKE2b-256 |
155017dcf1f8c05eb1cc0ebd479faba3f5832eb5f2dc477ce48d772bebca196c
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baedb73888a9d7c2dc2cfe86831c725b6ee640d6405b709d801e09409a7d0da6
|
|
| MD5 |
d343756b2c192f7343f19e86dda51186
|
|
| BLAKE2b-256 |
469b470790bb3f37ac52edaba9f4b6ec315060fb0e9114e6ac9b8a704754f1d3
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd610ad8bc319e78c65e106da2ab71f3f4ba85851f77c1634e7c2352a09e7f97
|
|
| MD5 |
e2beffa3ecd831bb72048c6b592c7d54
|
|
| BLAKE2b-256 |
f211e68468fea402318a1a422467b1077a053ac192281bdd04625a452c3e13ad
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d73d35540119e3ccce88a070fbe10e1cf29d119b149bd344c40ac30824edc8f5
|
|
| MD5 |
971f716358e7475237e6cdad819a76f1
|
|
| BLAKE2b-256 |
36283accdd524cc56417df99a87d0e1416656100fe3e13e6aee42f5657540eb5
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 942.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee96ef255f37df9ed0b2d7865e6a746ff594d328c510ee457913f2f677c4f759
|
|
| MD5 |
5b7bfd0d3b3fa6e1aefdbabbce18ae6c
|
|
| BLAKE2b-256 |
68c9ea00b10871c63bc856760a47f9a40b2d6c3c50aaff2e7bc336b6f1205749
|
File details
Details for the file pi_heif-1.3.0-cp313-cp313-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp313-cp313-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b151e3fb9a0ac4f3729da083eacca2ec4389d312d879ac4e01bb6a1c5fa0812
|
|
| MD5 |
6f3fb07bc23e5f7c97b7209863fdb8e5
|
|
| BLAKE2b-256 |
87a3e921a28ea4b24bbd96cb9e1cd9272ab9a6525e875dcf1fadaeaf73369e81
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
633b6053875b8e482538fdc18cf66ba1f94ce7704d244aa325ed7197073155ee
|
|
| MD5 |
82a83e8955aeabc914772c776cfd1b6c
|
|
| BLAKE2b-256 |
950841c95822b8bbbd61a15e34a25e9a170035a17ef64bf12f95ad0040441b2e
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26b3d101f838fbacebaa63e0c8b60a4333ba4d3fe93f4a3b51169ecaaf13c0ac
|
|
| MD5 |
ea6cd8a500f2456af344f47f9247b364
|
|
| BLAKE2b-256 |
87f59deb76f59f36451dea69ebf0330171c1f953ae514dd03ac82ef2aa902ee3
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c2f7d26435d25be915914aba7ed383025a594453e3e84fd297975a9584b580c
|
|
| MD5 |
3810a3670f2a3e9cae14cf62c3152cca
|
|
| BLAKE2b-256 |
a52606f0ba0fcb6a800d8afa73e63c78be6baaae0c442d17da13ff3e7d9033af
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed464485f7df1d1b575dc1ff539182b09b8312d06c141882bbcfd428dc842cb1
|
|
| MD5 |
587eed8b4619927fffb875ed36d0913b
|
|
| BLAKE2b-256 |
9078c7e141f8a9943d711a63d1f9c55b4f69b6cad0718d8c80e3a65ca3d42a61
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aa8e52e3d736cc07dd0657f87c841be069954a7717ecd6fd24ca8afcc16f6cb
|
|
| MD5 |
612dcf4cbd45f6bdc24d1375315bab02
|
|
| BLAKE2b-256 |
b25bd706a05b96945aabb122932028f14c21524a81e9655f38fad40de9c096f1
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 942.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04ce68ac95103d59b5c8fd25a8a51b40541e76d161d0eff834b9a9a3350fa401
|
|
| MD5 |
7c9b4334f8ab9cd7303ba072836a4bee
|
|
| BLAKE2b-256 |
d2585aeeec1b7f0030902f9d96b168f26b7adaae0c8f758262bba0fa489036a4
|
File details
Details for the file pi_heif-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09cba007708cef90f95c15c382ece6f51e7ba33fb7fce96b54d786b02c9544e6
|
|
| MD5 |
1af7c2c5d3e4b1e0a40be582c1977508
|
|
| BLAKE2b-256 |
1eeb4cb3f9789c2fff42ca0b40b0f57fc2a72f68cf62d54c836864cbc2032ec6
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d714ad7292b53020a651015417fccc6017fee7420b47f5d31aaf6d02398159de
|
|
| MD5 |
f0b03039871c7d0005ff007ada428e5b
|
|
| BLAKE2b-256 |
7eaa05c66d09afca1b1c37c3cfa1f5b32f9d3cd9944aa1274fc28a87c157b10f
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d248f8b83009a980cd86719524ac3f7aa81427d998460479df36b8188326985
|
|
| MD5 |
b81bcdd24818cb6c04e6738660547b50
|
|
| BLAKE2b-256 |
95892ff1499e18ad0160d6458a8113337beb8379a19ed54a38b699bf806b8b64
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
beb9dd91455a0bd2a3c7a5da66fb922efac86b24e45ddcde6dc4121909de6db0
|
|
| MD5 |
6ef17aa60827e78632f12cbc4898e596
|
|
| BLAKE2b-256 |
f809cac5841d60f85d72272ed2d46fd37d4d0aabe5cf7db2823693db9e136e17
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de8d6705b4b118ef3fa140c8ebdc6981e9d77b6176cd1315ad5a9ac79549dbc3
|
|
| MD5 |
21f46658851eb1e27d46e8f72addd55e
|
|
| BLAKE2b-256 |
a1e63a72c309807942ff3a944fa69eb8e47b52a8a5f9670ef3168bf18fb901bb
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39e84d64681adae5184f9376ce53d24b738831612dfa595f3efd4a4479393a7d
|
|
| MD5 |
988831ff5a78fb3b918cf60f29aa83fa
|
|
| BLAKE2b-256 |
5eaa1d6b92b782ac82ee8fa1f45f9dc8545866d738bad65f4f847ec7e53f246b
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 942.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3513f82c6039d00cd2f9b4e025f3742115f4802bb613d5bb50a8be62b256830a
|
|
| MD5 |
ee50ea01c0b72c2e7700a894cd9e3617
|
|
| BLAKE2b-256 |
3bb32706ee866c6b461363f9fadb13a850a13a41f26952a52e6f50158cecd303
|
File details
Details for the file pi_heif-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
183ebd05e88f8e1b69e603164619f6ca79031e26078a6795d2a81c6afff36190
|
|
| MD5 |
b8c69f1cee1302373150e697e883b7c4
|
|
| BLAKE2b-256 |
01cb2d351be04962981a0deb49d747bcc721a7ece8e2272aa156e9251511804b
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
666a67e122492fb68380f92b1f290a0f206f1e54d6156ef8fc8684c086a73807
|
|
| MD5 |
757a4e6b9fa50095a539a191a33a1cc6
|
|
| BLAKE2b-256 |
b0f567d3dbe8a3b4af0a1028cb7e96a7cc25ccab0b142daac58fe9669070dee4
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
374ff94b4621b9373d80b12b641fc3888491ebfc3fac846cb4af606b486e0038
|
|
| MD5 |
eab64880be54513f97e51d34eb4e4ee6
|
|
| BLAKE2b-256 |
7462c32ffa555fd50b73450551ceaba33193d7643605f7266738fd80d6ca4ad0
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
772829950b4f4614534a2069ce946a9af469fedece50e6303431bee97ecc67b3
|
|
| MD5 |
209f7ad3c606b70d1bffa3bbb7cdb9b5
|
|
| BLAKE2b-256 |
2fd981f4d210df4373122e6d901e1de5cf7bc8a5748a36fdbe88becb3f12cfa4
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6529c2dfe3bd4362236450ce03e467459608cf10fd8c1189ff17699681db0ea
|
|
| MD5 |
92f592feb26933fdfb720c1a265af9e0
|
|
| BLAKE2b-256 |
c07eda368bde0a5254bea3fd5e3dd4b709bbe5f8c765734958d4f83632415cf1
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b439b72267ca6bdebd234e36f70e164ae385a6a2074851ca013e8db782f88e6c
|
|
| MD5 |
28fef62bb03470d20197802a12a24710
|
|
| BLAKE2b-256 |
f8c8e9c54a8cd41bbc4fff783634cba5f082d1784e36eda14d5dd6220c2abd1c
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 942.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78bf8833e16bd52783c443e7e96677a5cb21784806eb39774426277733340ad0
|
|
| MD5 |
6d6a918d50f246052e0c307e21650a7e
|
|
| BLAKE2b-256 |
799fa7a8ce654200a921c31b9785f8015400e68f5f5ff1a579f73c40af14a3f1
|
File details
Details for the file pi_heif-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pi_heif-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28cbdff7b493d5ded2c53c72e3aec5d5737b9beb24e282149fc076c5fac5818
|
|
| MD5 |
b1c6f908462c20993c6c69a136dabdd4
|
|
| BLAKE2b-256 |
ac36e033c5cfd3a07e8ec6cf339cabf72ec78e4fd209a23ada2aa263f1913fd0
|