Skip to main content

Python 3.6+ interface to libheif library

Project description

pillow-heif

analysis build wheels test codecov style

PythonVersion impl pypi Downloads Downloads

Mac OS Windows Linux Alpine Linux

Python bindings to libheif for working with HEIF images and an add-on for Pillow.

Features:

  • Decoding of 8, 10, 12 bit HEIF images.
  • Encoding of 8, 10, 12 bit HEIF images.
  • EXIF, XMP, IPTC metadata support.
  • Support of multiple images in one file, e.g HEIC files and PrimaryImage attribute.
  • HEIF native thumbnails support.
  • Adding all this features to Pillow in one line of code as a plugin.
  • Includes AVIF(x264) decoder.

Example of use as pillow plugin.

from PIL import Image, ImageSequence
from pillow_heif import register_heif_opener

register_heif_opener()

image = Image.open('images/input.heic')
for i, frame in enumerate(ImageSequence.Iterator(image)):
    rotated = frame.rotate(13)
    rotated.save(f'rotated_frame{i}.heic', quality=90)

Standalone example use

import pillow_heif

if pillow_heif.is_supported('input.heic'):
    heif_file = pillow_heif.open_heif('input.heic')
    for img in heif_file:  # you still can use it without iteration, like before.
        img.scale(1024, 768) # scaling each image in file.
    heif_file.add_thumbnails([768, 512, 256]) # add three new thumbnail boxes.
    # default quality is probably ~77 in x265, set it a bit lower.
    heif_file.save('output.heic', quality=70, save_all=False) # save_all is True by default.

More Information

Wheels

Wheels table macOS
Intel
macOS
Silicon
Windows
64bit
musllinux* manylinux*
CPython 3.6 N/A N/A N/A
CPython 3.7 N/A
CPython 3.8 N/A
CPython 3.9
CPython 3.10
PyPy 3.7 v7.3 N/A N/A N/A
PyPy 3.8 v7.3 N/A N/A N/A
PyPy 3.9 v7.3 N/A N/A N/A

* i686, x86_64, aarch64 wheels.

Versions 0.3.X will be last to support Python 3.6

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

pillow_heif-0.3.0.tar.gz (8.8 MB view details)

Uploaded Source

Built Distributions

pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (8.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pillow_heif-0.3.0-cp310-cp310-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-cp310-cp310-macosx_12_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

pillow_heif-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pillow_heif-0.3.0-cp39-cp39-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-cp39-cp39-macosx_12_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.9 macOS 12.0+ ARM64

pillow_heif-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pillow_heif-0.3.0-cp38-cp38-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pillow_heif-0.3.0-cp37-cp37m-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pillow_heif-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl (12.5 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

File details

Details for the file pillow_heif-0.3.0.tar.gz.

File metadata

  • Download URL: pillow_heif-0.3.0.tar.gz
  • Upload date:
  • Size: 8.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pillow_heif-0.3.0.tar.gz
Algorithm Hash digest
SHA256 da09930b27eed668844adfd8218562a8a4b5b5159bc46bd6bcc3e8e16b18d461
MD5 d2c668a20cd25954a02a7e6bbf76a75f
BLAKE2b-256 5658e8ca609ccb957661b852fe279d993567012062984d4c2050bedd366ebd8d

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5651c16c7377027b33645d7b0da55e1b14bdd4f5ad7cae4abbc80abe892a4b3b
MD5 c53bb0f5c0227d39e13bc9abefbeba29
BLAKE2b-256 4ca4a47a7882badcb5f5c3d02ba702b38b9605a6878c8a0ccc24a5e693f58f39

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a8ab64c0f0f78f60737240d175103612d4a205d098e07aec430bea03a89c576
MD5 5afcf3e3365d18238081d70bc6ad365e
BLAKE2b-256 9899e66dea58b61006ac9e8ac36ef1a207b638a1dd53830399f54750f1df4a0a

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b72d2c88409d7101236ad93108a7e3331b739379c4fee9cbb5e2130e4103c3e
MD5 0088eedc6f0256d5c6076cc1d4a716a6
BLAKE2b-256 adc26798f6feff1ad64a5e3eb3c147bee2fe759a5bd758f265cb3e42e235d282

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccb7047c23cf7d6b150e777be8ba429d18e4373f305e7d4444c427e00b563521
MD5 854973d0dc864001d547662a8e30c206
BLAKE2b-256 7b8e76e17eaf28b0c62084471a185aeb34c38ccf6295f4fded67a28edde6ec50

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9999f2969f0c69b5c3e8097651ea9b27812e12c86ad9d23963360be483f66752
MD5 b5b5dc016df3a3ea74f7248e1e80188c
BLAKE2b-256 4bb2037b488fac95a920dd32d712315d171e5b41fc3ce3280371c7e965efeb78

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b67f2bf17477f3d62ccfd0ef04da6c42dd75042b4abd6b019c93c47363e8f340
MD5 4781314941ee64e6f0281839ec635dc4
BLAKE2b-256 04d1a1de2346489018c23113f6852e21278c7466d9d8e99a2ead8596b5d7bc9c

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fcebf189cf373a80a5ff76ea8aa9e8f5d94c64fe4332c48d97bf9be66a11fa6
MD5 b7f8c89dc7b9c091092d764312add2d9
BLAKE2b-256 3c15f2bfd71fa7ffca41769601e3e0b2d6f551404b517185674e6802fe77b1ca

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08000c9d38be32b8af8f180cb8c9e0f8caa26a6c2edca9ce46e8c0c51c0af121
MD5 c9abd97c6dcf500c7242cb6ca21c69ce
BLAKE2b-256 b3b1bc34dd255cae7468c64231ad92ef5f2a4c4a7b7125cf60c993738a44ed7c

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9766718089465db54421deabbd8e6090aefe8ba7de1d6acd647c231849f4dfaa
MD5 f9a13afdb04e85886e8b4bb7beb92671
BLAKE2b-256 202c02927422ad1234be9529fde891c9d94ee742b0b11d421080a476d3c70fe1

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82c128788966f985315d06fb38c104f721c2bee464ecd3688beba2f58b7a0983
MD5 37ecb93bdb56deef256680591dad4672
BLAKE2b-256 944b9bddd766d037b5cf2be8f778f9dc94dacaf509a86451e47aec2b4155080e

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b81b2e988189d61713572c6add61de2c65bb3f8c2c60f6bfeee7f94955ae187b
MD5 9a7b640d2f62afcc04c62bab2bc01ff4
BLAKE2b-256 0bf2e2d11b4fb0f337ac954e81a11cf0f400efd685bc59440b0936f5cf8a1a22

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c64af904f5abf39abc845d6959438d51e56c02563139e08070edd36d07f5373
MD5 a5ea29c1b81c0727b9d672ca25ae73fa
BLAKE2b-256 027c61060bc207fa9964102e5270b137839bcb5838eb21deb014c9226c7e3576

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d03c7307d25ce56c6e9bf0f47225b4d918ca146411b885db0bed1f12769764f9
MD5 516ab78eac339c5898ebfa05c3e47019
BLAKE2b-256 3dd576bc44f1518d6ca78eaf6be35b5ab096b1493c7aafb79f196d9ab54429ff

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96804d0b119de89c814bb97270bbb51de73aae93e467ed830583d946b933c887
MD5 681d9c50dc14303deafe4ed78c7f053b
BLAKE2b-256 7b76354782beb7bb16c4b45dcee6c37785569497f30db6996ee8ce5212b489ab

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a589a8fc8678640a1126920a8f37b7f4290c9196bfe89b76423f8ee7753d749
MD5 af5e16628cb2f48585bf772aa14c3bf9
BLAKE2b-256 6d0aa457c4da0b4a7f0181f56b34fd661637ac44845863c994052758f53faa2c

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 8794059bf2b425540052cf9e5ad8ccea45d6edc13f3d2c769fad985927c6d0f9
MD5 ffd1bb9e6c0000229416e505f1238a51
BLAKE2b-256 2cc59bd4f4704b5a7770ed7f6e50fc5c4952e45c6bffe5d5f27295aee7f2adde

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56bfd0d564320b2afcd0a3febd45b3cfa84fabf62b3bb2ba8962de33b56844c4
MD5 11e786ed77a22b8de7f3b0820874cf16
BLAKE2b-256 8f42c016aabde58dfd7ddad2650b219025fc74ddf8690d4d96cca13706622be0

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f940c9cd9b1893ed8c1885a63e0e47b2a6bc39b49d0640adcf46a126fb249f9
MD5 73ada78b23ab4e451c1ae2ed6f3dd29e
BLAKE2b-256 252fb883b2411fefb9a03ec746be5e34ff9bf12f40bf43560600e68d3618462b

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0fab1e196089f909f2d8bac7703564a2aa9d255b2f4a1b316cebf41642110be8
MD5 a32029ac231e41fb75ecf62ad82d270a
BLAKE2b-256 301f3f6baf2af85654afd0a3b21619ef9f63309db57700e302f1c3c14f4076d4

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e54d06b54c0efc05269189abac6d3eb5dc4be2fa16f373b331acbeeccc0ed061
MD5 26784a065c1d37bae942c9e00521d13c
BLAKE2b-256 182dce59345607269c29e142be52342aa08de478bd5486c2da41f3a5bcca309f

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c1739caa1671f9eed0e9e5b6832b0c1ab4f45b76ecc782f6b640586cee56c86e
MD5 a591e377183e300555b62e36522b5ed9
BLAKE2b-256 7dbc008b752103467f45087d22f20c8112e6a0cb7534bcd744fbb758ad786d57

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 872b71b8623ac3322780ee48a6c63b2dbb8bc9d2fc3ff5d397675889695e5782
MD5 627d48847097c38b108307fbe1e26380
BLAKE2b-256 00612753a75efd10006e81db70d7caddf3315386c7645da5cf11cb5d80ba954a

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 714cadb4e49f23ea63fbd70a29781516cede6952f87ea4e34ecf432dd2980106
MD5 0c4f8c04e320f74819d7c85766eb347f
BLAKE2b-256 03aaff7266a5dcb73ecf60e1fc1e355ab27ee92e1805305e883018168fcf025b

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e45ce4433211ab9e9c6261463b0eab47011d8e9368a90a77c24474fe35f6809
MD5 ce50d5bd990d82e2967a02502b362e4a
BLAKE2b-256 1538440888987c97bd3808325c52f93071404c544d66f6635a52d9c1022685e1

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 115ef8905468e8b3bd9846f02d2d841f434d0a62de45d9ec5f9c80908502c514
MD5 c42c1267e303c89ca23335c5707e09b4
BLAKE2b-256 c979b623cee3eb6555a74f61608aef53f2bde481fb59bd8b90b85c0c1b7a4b34

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8b031842c4e5cae0737c5dfef4caecf0aa1dca0b978f0488823650a476f3036
MD5 36aeb96c0b24d54c86e12fa3c40319ed
BLAKE2b-256 59e4e16ba661914f9fc725f1d84db71ce70d12bfb53302391f04e3c9240c197a

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 237bad2e87e7e132cbcb0f2b5eff990e1622b054d3b69c4eaab08c584ece4af2
MD5 0f7df88f3b9b794e93153a8eee2deeb8
BLAKE2b-256 5a51b3195e6b72c46248b9ccad3fde10b712ca4488d5f6c33db0b0c7d8a7c7e1

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3630bc7c90bf060f5480c95e18eeeed7337ab9e0d8e23e4194bb22406787634
MD5 b458a50bb2b63c9c44d09c8b14503ccc
BLAKE2b-256 a4696d4d6787e4f5af2b0a6ccda9110c207a300f9899b1c997086038113a6801

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89573bf776c6b81dd345b8730bd8372d8e6e18c715b72e826fd7734e642f8638
MD5 50835b562be7ed62961d7e87e614136a
BLAKE2b-256 8bbabbf988d36729fbcd5f6d71c5cf71072f9233d0368fd92b729d0fffbf8577

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88da698c7d2dd0b85955befdbf0243fcfc8ab621c175115c458dad195af02b26
MD5 ca6ce22bd765b7279f2ed4b04cc48bb1
BLAKE2b-256 530d56321ad751e5c3cd4f5f06c603a768c8c664bb71083dd699091bea46b3e8

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99ca35e0da2418844706865ed167b36614186b6782602b915b7fc3af4c4db46e
MD5 f8c2afb8a55d60747faa80f5489fa90e
BLAKE2b-256 d38e7b9099c61d5f71f2e5608ed491bc9586b3dbe497e3aad27ba09e7f956b23

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d318efda294d50810013a72f14965b4f3a7875975d1c286fd4d75610a9ff430
MD5 23cb68679d1ff8dc9c41206789d0f9ea
BLAKE2b-256 ed603f9209d1594d2ea07cdbfacf13b399dba1da7786b91bb6346243da0813c8

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 205f15f56cf3db841e3d55416fbb8a07c7ed2eb189a5b94a35b0e3b3c820fc41
MD5 5780c49bb68f53328e4cb3eca76001e7
BLAKE2b-256 8ddf9f4e9f2dbde1ec69be325d30ed976365b62ad57af80d90e5b10a4e5eecce

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c37e5beecffea920e6ed7710948b6425410aa7bff0189727560d851c1d37454
MD5 36d4500afa164a0d06f1e3a23d84781a
BLAKE2b-256 593b154cb9233d5dccd421f47281668cef97605e3a3ea13ab1054785913d41cf

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 72f75cefef75a4193578b6d43a1715ab4a4211e20ee326181e264bd3b8441a7d
MD5 47763ea32cfeb919a9156e92fb3732d0
BLAKE2b-256 9c9b920f6245b6305e35a9e36fa2b09bc7da1fb52bdae6c2fae100ebaa56e9ca

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3ddf9b769dec3755ee5abb1174e10b3bc56c3a9ba5a7d294b8286a9da448f90
MD5 f3258fdb4dbc984f227f2e14ec1b91f2
BLAKE2b-256 0612eb43c9d7be91236b8ab1e78a13b3677a0a58ab08a106761d61d6c6c42f32

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8b5dddc92a828c03628c7bb4342bb0575027d4363e8f74c8b1fb156b21633756
MD5 ce9fa66fe3841490d115b939a7f90c27
BLAKE2b-256 2cddfe8913efd9400efda1b421ebcb664e41ed45ed8aafdd602e09a8d09b7e8e

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 51355c33ab0ee5714f21eb1812e07ad8a56b69331ceb75e6c6780447b877cfd1
MD5 a075f4dfef7a73eb3ded7a0241063c22
BLAKE2b-256 7aad79b38daec28da1bb1023ead4c45abbdd466943af19efb200ced11ca44ba4

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84fc2e046596a8e231c596cac82b8bddd572a01c4e3077460bec04efb96fdbd6
MD5 e793e4a084e2f1b6853a0f26e165befe
BLAKE2b-256 a9f54248a70039477d5e1e3a393394f81df6d64aff20f68de2f14be08a095cbf

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35d58a0d48b69d1ac4e3ba570bde0d96e86d3a8168193a109753ce0f7c9970e8
MD5 834d9307f6ffde2da50068dc80005fdc
BLAKE2b-256 9b4f6994dd043c6a150c77874a25eb4bb9bbb9ceba1bf23b782d2d092e0b37c2

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9ebbbb5445b568e483a6045697b8d6ddde9f5ff575388c2452b477e9ef4767d
MD5 f4b0b5d934e38fd30921a07b7f96a879
BLAKE2b-256 cb02a249c8522874f287fdaa4c61d01922d2e98188f172f2e69991131bb4e668

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd4875ca309b083f8310213cccc506fb84be5ad5942339c1b97b12e68c2d60c3
MD5 215e279bffd21dc05b0b26ad0f52a42e
BLAKE2b-256 daea435a8dbb485a7e28b744a6ac6b6f6b5ee8ddd9bec0783cb6071059c73eff

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c027254b142baf10975c199ec773131aa0d066271527e98d1adc376159bd1fd3
MD5 8ff3c333041abef75b59c8cf389c43cb
BLAKE2b-256 c39bc3fed0b2d176369c30ee7630362860fda6ee7011a26fab10724b296af57a

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ef006d071c259af0998b5f5bf2bcba020d08dff980d21edb4c6e5e58b010a80e
MD5 81b9bc53b46c283ced31d4e9cbfcafd7
BLAKE2b-256 1ed6010a1d42fa6ec9f7072274146a0111710990e0a0d55fc615b57ec80ff01c

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6393e6575c1502fc030f6e5b57148628c966f72ffe3b5e0f274497f0559f9a03
MD5 4ce974ac7b5a75bca855440142c4b105
BLAKE2b-256 cc192207c368bfb3f1857eee84503ea254cad0ad48a60f758c327642ee1b14fa

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cc7fd1be7e16095c38fd28268e6b8f0e384471dc1e0fb06ef096d6f134055f0
MD5 f57cece4e884ef7fef6c770b5f5cf64d
BLAKE2b-256 06bf22e1ed99425766d406d5105c0924deeeb920db412f80e697be4070f50c5b

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32246ff28cc873afcb035511d21f3cdbf5d3a7f9bf5a8ce60f7051a807c5ed29
MD5 6dd22ee2121a8be9bec7d629d17db66c
BLAKE2b-256 6568f4a827ddd2ddbf7a1949f71ba8724b658ccc0c4a1b78fd2e4a74a317ad90

See more details on using hashes here.

File details

Details for the file pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-0.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81218dd1d52c73bf7e0e7add40eec28ca86de6fb3ef886261bdc00d13360a162
MD5 34a49d5919b4e2ac733859d72da6fad1
BLAKE2b-256 d419dbd9fe79c2115b58353e4cb44242e4d6f35dd8c04112e17d163f5d7372e2

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