Skip to main content

Python interface for libheif library

Project description

pi-heif

Analysis & Coverage Wheels test(Pi-Heif)

PythonVersion impl pypi Downloads Downloads

Mac OS Windows Linux Alpine Linux Raspberry Pi

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.9
CPython 3.10
CPython 3.11
CPython 3.12
CPython 3.13
PyPy 3.9 v7.3 N/A
PyPy 3.10 v7.3 N/A

* x86_64, aarch64 wheels.

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

pi_heif-0.20.0.tar.gz (16.2 MB view details)

Uploaded Source

Built Distributions

pi_heif-0.20.0-pp310-pypy310_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (946.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl (486.5 kB view details)

Uploaded PyPy macOS 14.0+ ARM64

pi_heif-0.20.0-pp310-pypy310_pp73-macosx_12_0_x86_64.whl (540.9 kB view details)

Uploaded PyPy macOS 12.0+ x86-64

pi_heif-0.20.0-pp39-pypy39_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (946.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-pp39-pypy39_pp73-macosx_14_0_arm64.whl (486.5 kB view details)

Uploaded PyPy macOS 14.0+ ARM64

pi_heif-0.20.0-pp39-pypy39_pp73-macosx_12_0_x86_64.whl (540.9 kB view details)

Uploaded PyPy macOS 12.0+ x86-64

pi_heif-0.20.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13 Windows x86-64

pi_heif-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pi_heif-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pi_heif-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-cp313-cp313-macosx_14_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.13 macOS 14.0+ ARM64

pi_heif-0.20.0-cp313-cp313-macosx_12_0_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.13 macOS 12.0+ x86-64

pi_heif-0.20.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

pi_heif-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pi_heif-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pi_heif-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-cp312-cp312-macosx_14_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.12 macOS 14.0+ ARM64

pi_heif-0.20.0-cp312-cp312-macosx_12_0_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.12 macOS 12.0+ x86-64

pi_heif-0.20.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

pi_heif-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pi_heif-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pi_heif-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-cp311-cp311-macosx_14_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.11 macOS 14.0+ ARM64

pi_heif-0.20.0-cp311-cp311-macosx_12_0_x86_64.whl (543.7 kB view details)

Uploaded CPython 3.11 macOS 12.0+ x86-64

pi_heif-0.20.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

pi_heif-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pi_heif-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pi_heif-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-cp310-cp310-macosx_14_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.10 macOS 14.0+ ARM64

pi_heif-0.20.0-cp310-cp310-macosx_12_0_x86_64.whl (543.7 kB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

pi_heif-0.20.0-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

pi_heif-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pi_heif-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pi_heif-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pi_heif-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pi_heif-0.20.0-cp39-cp39-macosx_14_0_arm64.whl (490.0 kB view details)

Uploaded CPython 3.9 macOS 14.0+ ARM64

pi_heif-0.20.0-cp39-cp39-macosx_12_0_x86_64.whl (543.7 kB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

File details

Details for the file pi_heif-0.20.0.tar.gz.

File metadata

  • Download URL: pi_heif-0.20.0.tar.gz
  • Upload date:
  • Size: 16.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0.tar.gz
Algorithm Hash digest
SHA256 f63b5ab190697c91dec482112bfa90751e48070899f4888317e943075dccf0be
MD5 29de2f74594fc9d736f8b315f39bca6b
BLAKE2b-256 5e9741dd02b235d3a761dcbf56993bca96f54e8e7e114d4c75761408d15ceb89

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d7866ea2735d8cbc7501a98735a940ea22098303e340f2218caad3427f261abb
MD5 d5bf33265fecf86e217e064352249cd0
BLAKE2b-256 2a06ad90f2db614b2bf1447a6e86ee0083c2c5f94fd66f1903c1ab8afb3a513b

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 323b7d1ed4a702fe7b8ca2f959f01f33879e38c413542408d522383b65857492
MD5 81458b25596dc60da1aec57ff5b35918
BLAKE2b-256 a9ef9871c216c8134990e2563fa012e8303a61d6ae14662e481c2060bde25610

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33ab67a27bcbe24840bb26bf71a097e66c1ac63e1c5c155456913b8f933c9582
MD5 73569e8522486bcb627cb0573843ea98
BLAKE2b-256 07c21eb5ebe100b28f7f58456edfb767392d20f8650bae081bf2fe300125d65e

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d002ca0b10e39b3f034385f1d453f4effd94bf83bbb4464ee72a386dcdbb1c4c
MD5 6374f3f4baa36a85e083011a5cd2a2ab
BLAKE2b-256 09d781241dadc735899fc89953048881f84a487bfcad47c75899c1cf387f423e

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp310-pypy310_pp73-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp310-pypy310_pp73-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f3f1e59b802d96c0dcf1b91ed2cc7d196a94b9e3d985ef80a86700e16e45bb28
MD5 bd9beca54990dae9e5324413198db540
BLAKE2b-256 31cc183070415942a5604c3981315dd06930318fe2cb5a3bb7a9182cefc91c95

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 695417ff1050cf79bca5c47bead807d7eb30fcf76fd64457f686a6342712284f
MD5 97acfea91138561034ac7cb0e946817f
BLAKE2b-256 ee788823784feac1103dd8154c58f474b160edea601f7abf6e1fd4408d144f60

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4908b6e6be10062bf06dd5512184b1ad495291b73aa8f0b82f0fc9d66f2bcc1b
MD5 e050776f03415b8a558a6f6d056cc38f
BLAKE2b-256 67cdc1114a3bdb716f54b3f9e49f32711633a5592f41228c6c70aa5bbeb8e36f

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90e1e4ccd08e7256d1a19519b546efd7d5baf75337d522cbaa813fd6155675ec
MD5 d2ab3d68b8e7751fc02555ba45c17626
BLAKE2b-256 503a35b1396563a9a03e7c1dc804a7337db0eaebf2321bfdbeed4fac5b547acb

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp39-pypy39_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp39-pypy39_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 849d6ff186128d563b494cd463abc156a73ad4598b38dcaed0d52c0e78ec8cc4
MD5 fcab2b9afdc919a9694ad8f67f317b83
BLAKE2b-256 0fa568c705f6f621e7af1083655997f71c6fc077818a7e1df6eef78971a8264b

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-pp39-pypy39_pp73-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-pp39-pypy39_pp73-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3bc6d86cdc42c22fe0821db2771eefa7e9651922668dd008c1cf8d786c1b13cc
MD5 0cc0bdef5d1ac57dc8e28d9b826069ee
BLAKE2b-256 72e6ac0ff2d55484e16b82378daa8d755369ebf94a739990befc900bc2fc941e

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pi_heif-0.20.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 086d101461f0580b621de1cf24e6cf9c136015e6ff9408fec7f254c2c4f49243
MD5 d4eb67ab293a82e54a2844a5969f396a
BLAKE2b-256 4f75072f2fd3ffb47ce736d8f86489d557639d8024395a38694d6e67e20f70ce

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d57f48a08b0cdc492e17fe33312b47356a17fcf6a93c508a9e503e497e03ef4f
MD5 4257d6530ad97200b0bc3793c8e3d29b
BLAKE2b-256 82d9404ccaf6e3ca60fcc7d224de38f76a67e6ce59490bed79604d1ccbc10e59

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ca9ccfda3b114229c92b5470f8fe451b5d07f4c8677edc3525403ef379b53ba
MD5 1a63eda541e52a2f8f364e525db331a0
BLAKE2b-256 88c2f9fafef6fb5cbdef17e94588e0ba382937e73d8900d23b161cab4f634c83

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b71571e792389151a679f4cb477a54ee1f3834d4b21c2f9e272068a4166964a
MD5 c218f8ab41e433a4a37868e68809f3de
BLAKE2b-256 e4da17e123f7af5ee49ac364fd63b4ebe7fef6e5d0336fc1d4aff55b3315bcac

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 030df62463a03053d68af01fb3fafb3dae3bc578b8da24280f0787469c22bdd0
MD5 90b63af993cb4b6bfb8a62793db3fc87
BLAKE2b-256 cfad6117933696f0a3039b340a2d030946f87219449ab92a0cb145d8207a2621

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 137af16fc31f8862775a82287e0c1ea0627fb0e9ffa53fccf84cacd1f4e0a90a
MD5 8b5794ff2863ce8e2b450e2244475098
BLAKE2b-256 a6c9ce0adef9994948d8d803373b00c6c8de8572c0820f2258b817b430ce7741

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 81e0f769d62f7af250518a99c75c3cc357147ab78ad673b5c0e96b3c1e3ef21b
MD5 515ff6c99b404f35348b2aa83cb06030
BLAKE2b-256 a9368bb48a19d70c350043203f270b664c46b1f1fd69b86fcf02a46d732ffb05

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pi_heif-0.20.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f082f12fb3954ac0140e9eead2d3a2be4aa60aa834a3998665175fde67f50793
MD5 38d4eee65651e4fd96973fa435a07a3f
BLAKE2b-256 b93d957e850d04f2a28fccbab2377e9bc450d6381dd2978cc4701381ba62335d

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05b938736a4712fbc1224d4207ceb226670568f7db329b61895876c1ae7fe241
MD5 9c375f5337fb9102b58d4dc97c9e6b19
BLAKE2b-256 c1d6ceef1af1c88ba19f7942c2f95ea585fdac7ae9e77e4159ace838ce308bc4

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6edf3cf270838d26329e1f0d93a3a85963e4f811de8e80173e18a2f137020deb
MD5 7c12a6eb72b88bd47af6124a0d5008a2
BLAKE2b-256 415c60bd1ee8ef53fb230e76fef04d3f5f51381e9246ac833fa2f4c1142684f2

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8cd2a83ee8cc597ddf7e13d2adec60b7206357ff55649c4aea2f4c76bdb11c2
MD5 c78391ab55105892f57463f5a941ca10
BLAKE2b-256 430f486583e0104eb17ceba4d99c1c360c1bce00bcea16dac72549de66204089

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6a4d350ac12fb5f45bc83eb35747156a4faa12d001dcdd9525a3912ae5b4d7a
MD5 b81ca2f2f3cb3945df776be6469bd64e
BLAKE2b-256 55fcbc9b19ec222604189bd9fb8646182a9d535e02de4ece94032782a83a6e1b

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1f482ac86090c0d8adf65bd3a6b97f485ceaa0876123225913e3e2ac687e5bfe
MD5 be604782a40d74f824c3bd9dc485c417
BLAKE2b-256 d3d955dd10ea9a2f49852383634b9425b53cfe1bb039c272d4c5b8949f675895

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 52436771e1e9198145a3db25885ec9fda4eda11f5753e1317ae9459b190cd6a4
MD5 996ff35df6c53e9f5c64688db154a89c
BLAKE2b-256 e360c26834f56525f11bb707de363681fe243579d0c45a466278b2504e147653

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pi_heif-0.20.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b23d891b4b788a00fb8e0c170e4744d86708bc682b3bf095143b10074bdd694c
MD5 efd8f458acf8f4ea2e68fdb074c97cbb
BLAKE2b-256 1e72f17839e3f7d029b2cbda547d2df6931ea914f708de533528f700fb39b0df

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eadcc3cec45d3c021e4c41c5a85e56f4c2b8b8942fa9a1720d9376b29c2e39cb
MD5 90b4a078e41a834c94ccf77543ef6042
BLAKE2b-256 e78de4f3280d0d3564903ae4abc120002fdabd8744c105d28bb1cbdba8afe91c

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18b8c3269d1e07f85d146217616b117f5f2c8142328c6669a46d8d762699aadb
MD5 82cc1c7250333b73057f6926b0985b8a
BLAKE2b-256 3c0798f97208b43eeb3eeaddbc9905e77be7958d965079e186c727c7d6ce07cc

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 834b188f4963ac29b2ea92153e7d437993d8dd9e5adbff1640695563832f2157
MD5 0416c866388ba6de15b7f0d4cde4644e
BLAKE2b-256 52bf80f7ee7c5feb335e4383ba7877af7009bc7ba2244260aed9f8ddc83b3793

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9050f675bdc43333c1ac6aab734e253a3ba92a0efc8014d3431953add906ead5
MD5 4dbc0af3f194ed1a26822a486f9181f0
BLAKE2b-256 97010857d334baefd51ad4003809253710cece73a3a3e540bcde881654218d2a

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2484c8b5f447bc0018d9045faea9880e177c818c89eb333239aa02b9ed4a9ffb
MD5 2f59f8ad6b7c89ce07c4c39432bdc1e0
BLAKE2b-256 3c6256aab86081a1ec39928edf4da83aaf8874706fe763123699d54f8a407a3e

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 89c8e89b7615a0aa717f366169c4be31451af72a937314104cc88cbe40e1da11
MD5 b8efd129ee72489e2731e8505c961b54
BLAKE2b-256 8d8bbde20705f801adbf7817eb75e85b55b8c77cee203f2a68dde0c7b6d0c3c4

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pi_heif-0.20.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6bfcc917d3b11f6bcf80db8c64f721ce1ab7335459c0f109e933ca92e6dfb1a
MD5 753b1718a1381bef0308d4961e6f0ff1
BLAKE2b-256 6e9c5abbbb1231a8d95ed3fc4a2db73e70d666b89007de747dd0803b9fb5f5c5

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e81e28f0c7330133b5b1ce7e1ad118663eb9eac4cad6638bfca07c0eb761129a
MD5 bfce3af665d285d570346e1e7defd5a7
BLAKE2b-256 ce52e36b9c9a37c2b043bbe30d2981c4305fcbbe44c169894f4c475b0a4e92d0

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 393868800055271ae7ad876055e7b3f2eae5ab2fe1980ebe28a5761725c2c189
MD5 99c78483890c92fa7911f0d5232ed3a7
BLAKE2b-256 b70db9fb09572642cb9d92832e7143e7dee11cdb7482f3f689bcf0acfcf38abb

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33cf72ec7d344ae681046455ab7b2d3210e8369ed46f921038fd980ba1b5b27f
MD5 1f7b0b0e78fb300b8d6a6cdf18dc5df3
BLAKE2b-256 9b81854746011d9d28b5cc141011d36a64ac55d8f9383337dc4326a5133df045

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee28de31da7d1a8cc08e4fa1b5a1c095b3e1c8be5edd5cf26c8ac4c365b806b3
MD5 fe84c264563e7f1b8a11cf8b072fd6b6
BLAKE2b-256 fce447bf1c6d4051336dbbfd11a99193a33dadc2ba6c03b9bebefbfbfacfe565

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 397e7839682771a21e7756a4822b4bc45251805d3188bb6275eb51fd63e6c1b2
MD5 4a25056ed824cb3a2b000177605e8b8e
BLAKE2b-256 df213438024f388781208322a65418e8f719e497e5d2215bb96b11c063d1e33d

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1371a3a34bffdc98b5bacf48b01c8bba0fd49183fd425a6f152390fda792e8da
MD5 9789c7cd3646923742a3f8bdd184755a
BLAKE2b-256 dc79866bdd17e2947057965b4226c62ac5b3a22e046d4151e8eb8a43db2c73a5

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pi_heif-0.20.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 13146a8d4873198cf614c70ea344b69932637c28fb506427caffe9b951cc5694
MD5 99f794628c475b94ef4a96514cb8ed07
BLAKE2b-256 a40ea5301a05b40f74f8fa5acdd71a0a0be4bf9f5a4458039eb1349af2d93011

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0305ea6e108979eee370fed0486df8b90ff25c619db9d9d539b00603e139626f
MD5 667e9a98cd45c7162cd9344be2729f6f
BLAKE2b-256 2809b8c2c28ae6773b7657b0c153600dd6c6590a23ef1e5627167b0b5f6aa34d

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e00bab005d97e6a60b2a52e9fc14fb8d50d9a7ff290d52b0e6491848e853550
MD5 0831bff7a5979614c033d46ee2967956
BLAKE2b-256 294723af43dbdd24209bfb5c71c09553f55fe27ec91cc9fb21a48eb6b95d9b13

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4b94f5ea91cfe180ead680528a197da8f77ff27b339aceb169bd7e2a51b53b1
MD5 4c93ea1378b8a320a23f0014e573cb27
BLAKE2b-256 ccb2cdcf664239864ffc1982f2157b3340868b990c5cd55b829dacbcb225147b

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627cc28de13eab9eabef9931c0ae260bdeb61200f6ce3d2cb8444a6979053ef9
MD5 da2a1610e387b27dfa9073472d5424c1
BLAKE2b-256 70e00b0442df4446070bd19764ada79b52e8d06316b1f3927e80833eb06e80a9

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ff50c2c090c2af6347e9caa8f2e3998c29f9ff8d4fac625bd48e0072f2133464
MD5 b1ee7709d4e08afe51e1c945495d58b8
BLAKE2b-256 165efbccf4b794720dac8305128c47556054752ac2e2ea607dc7c8679f6c3638

See more details on using hashes here.

File details

Details for the file pi_heif-0.20.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pi_heif-0.20.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 2a38a50b33cec5261037e625c35270656ec16c2febdcbbb529a9a96857b16a5b
MD5 1e55e26656092b673d3db6d1779cda6a
BLAKE2b-256 38edb4f6641352832f637a237eb7f619634fd41b92cd8035d7c3e07d4e320251

See more details on using hashes here.

Supported by

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