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 read & write 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.

Install

python3 -m pip install pillow-heif

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.4.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.2.tar.gz (8.8 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 12.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 12.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: pillow_heif-0.3.2.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.2.tar.gz
Algorithm Hash digest
SHA256 2dd16ceb6347ffb8ccc6f34c1357f7210995b69049980e8dee4200a2e69487db
MD5 b74e10f343d313d17774d6003b4f20ea
BLAKE2b-256 aaabacf637503914e08caa05627a8696a1023f9e7797e669180d3e75decc128b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b6d54de9994e36cd95d2dbcaaf2905f4afe3ad34182d00773fc129f6862d9a2
MD5 7f510e28ccaec313c75cdc6b7b251a97
BLAKE2b-256 e43420577dee1493411c1001ccdd88ce4730d0f98d4ecd87e88895a8c2c07bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad5de4d88029aa3f5cd856ce72a0278386471263fb2a228b89ddc0aa55852b2f
MD5 2cd8eda9729ef59ad1c192abbd51685d
BLAKE2b-256 7c9165e8873a5801537837f30a27df7fff6e5195cbd31a7ee6d33e81effe24a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f26301ea0c99a9777db1b893aaf3d858dd288cb70670fd98f96c5b12e19faca6
MD5 6dba1fc8847e217aa1bfd0d673a4e423
BLAKE2b-256 f1304f6a66bc78435598737dcee0f8b488e88e189339baf9e23f1b0dcfa0b6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33a55864bc2ea2d3836c5a374e6891c6caf2a592f78655c997865c29e323c25e
MD5 b028f8d959aea1a3b384ae9a6db47455
BLAKE2b-256 384d385642d216e46d345de9333d7345787e63cc1e1a9e2c7649b02dfb44cbb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b48edbe31a10e45d0da9400e08329ca282a7087b82d846d24d55ec9187e1ef2
MD5 de124b18950a896cbee3fb4442b6012d
BLAKE2b-256 5978f7bb17619d991da07de904e61c56f2b624115f5e0ebc3b4d39fdefd9010c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8d474fccc0efe9cf2c33c49889234e74e0111215e14f05f229ee2b869961ca3
MD5 c28e098f60f6863afb6c971ded01cb92
BLAKE2b-256 9ea309d75686c1cf7a8cee8489f0bd148858868fb4c598abfb9d9c7c9841f5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e921dfaafb079c80fc573c65e6aae191c0eef172f85feeed2b7b70251538edd1
MD5 83a9e83f4b45906356c4ac78cc6e66a5
BLAKE2b-256 c66f2d31a61e99df4ff6ef408ef6b16b782ef45e548a90cbf73bfa5fd552218d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06560ea903f0c47ab3523637a7b3296f53081b72adc48a28bac8b64db9ca132d
MD5 d8015906384ad7d0b15442e56bbc4f67
BLAKE2b-256 d3aa8674d7917a903284b07c468748b0629e0d92326e44a1d6617b42914b9ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8129d64750b9efa06b5f8962ac8ac7c34f8e21fdc064645229003f895efc73dc
MD5 c897517c186ab379d8f84f68aff958ae
BLAKE2b-256 b9354dfbf03a96e7b57ab651a9195442158bff38725c5a0b35a2eed435482725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8114c25ade8445b07c21df1c8090e1e96ed9665df2f7146da37879ecc252e3aa
MD5 3b5b3b82293d81dd6dbfb36347875536
BLAKE2b-256 d7e4527a0cb1f191f665b275ad15ffa9e7bfa1a165b7e1fc9ba7e1850adf2c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f9297076e153d2c771c388123d42f2ad8c70edb4893d94727fe27a9ebebbf8d0
MD5 812628adb166d5533a7c61502ef43cf4
BLAKE2b-256 3c12660a25a01c8912cf8572ef1680fc94a7dd3cdeeb0de11eed42a2f7d8c98c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e490fff0345a1866bd07d9f9841afaa24ae80ca2f6ca63fdf800bc468cce40c2
MD5 9ceea2a60c536513e7735fe04f6201c8
BLAKE2b-256 593c7b878195fdc4484713793150e36997e0257bf5b4f4828c8fe0d5f4317684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5c5abe5a1006bc43495c71834c99a495d9d24c31d1a8390aec8b24c59bbad31
MD5 5bbba727ab6c0c0cb175f1b7642c8edb
BLAKE2b-256 71a5b804ad6ea907de6fde496bc83f58c835eb7620a918860ef071ccd70a583d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75f31dc102752cdeff2998a15db64a326996e102e5cb50be17f12aa596aae86a
MD5 a564e0497b17471f62dfa74255c0caa6
BLAKE2b-256 de51205ed042c04eb64a4753e1de0a78d70f87866d120fc306aba726575be8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a201fc008b3065842c6ae94626db2d5a41a732b922edd3d06f13f725580c860
MD5 538fcd411e56d3dd513eb49b5a2e779d
BLAKE2b-256 e6f69f529f12e628f87dbf2d4e02c13c51c903e75692e4b36058207374161039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b25d2976c8fc75270850d59010edd921ef484be52613a63dec6d7ce2b7e82163
MD5 34b8e5318da9ef6ac506400da622ad5c
BLAKE2b-256 c1efa0f4ffb8f0b694d8b365f7e712934693876ef1016cfc7490d338ecb3a9d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c809f31fadce57f4a071f67b9fe6c7e526ffa86b55063e800390a928606f013f
MD5 20957d9a90e1fa3d948013e49cd08a0c
BLAKE2b-256 a8fb532feb2ef87f3e8183fb7b434e8146b3d5ea3620e5476c6c79ba030458a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pillow_heif-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d67a80e04cbae03ff3ebc4f4ed0225b10563d0510d164f5f6732d82108a342b
MD5 afa20248eca2b1b3e36f9b734da83ed8
BLAKE2b-256 e4b1a200f77fef64ed626dd116432e12ccc0ce6fe7a3f6fc1bfa029404050564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c995c9bed35f728bda419a91a36b59425f9059a429011f5f1ebdca8a342e7c2
MD5 d79655964ad25e517478ca45e484d1ed
BLAKE2b-256 06c3439175df90a5ba28c70a9372148af3be16eaacf840b68e6da05427b52383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e7c3d325d267f5eeab5a9e10111c5a60c662e59d93c22062c453f80e16fa83d3
MD5 f536908ff561fd4899c6057d791f0cf7
BLAKE2b-256 e930ebfb354c8fd1e161304f9835a53190bd6811dfc78283dc08c3fdfe0434f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9f86fa94ac245b8e1589d70fbe4e0758c7783ce7caa0e831265138af389adcd1
MD5 0c2f27db736f01b6a0d1ecab42f7fe3e
BLAKE2b-256 9096237610aa585742f3dafb1a17664d512e01de37415938bc6a672f67cd4c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d4c71d956f36f7568da5de30d78c835efcbc345cf1765c5c0127fa292035371
MD5 325c74ca0aef55027916cfdb4f9aa0d1
BLAKE2b-256 04daf5e36ba0054f83b61493a6480ba2af789239363009236d0e91163e67685a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68453ad8269664d804072f4d8e3cbb63cde0865ec8628eb91aa4a2df2c56103b
MD5 1f8c55101bdddc99683889298303073e
BLAKE2b-256 55fd1f11ef0e4ccb130ea4cb8fa29e9206f1212b20431366ec2c4a6e0b8b6bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba53fc72e2c84aa65760db84ec5e567a9c08fdcc3d0fe6e238e5421a9131b5b8
MD5 a2423574f048aa9d12eb0965edddfab4
BLAKE2b-256 a4e1bf48ecd75106e37712d09dcdcbb06638ab38a6f6d63c8f179b6f72ac456c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 cd32968c79b178a8a66960bd211ecadb0236afffb9e6785144246fe2d3b6acfc
MD5 3bd32d4e59c064ca57335b80af454adc
BLAKE2b-256 b8b56f234696e8f58de3ddbb3f3bc7739ae8a3ca4f3147263ca7774ead0b6b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86b3ad3cb5455c7cbbf32e46dcb2a8910e7d0141fbf8e835ee30b772e5f4b02b
MD5 448b67787286e21638103717051e7b2f
BLAKE2b-256 27e9243b69fcfa0a73d31ab4cff80f7b76ae3eecd9d1b5fcd8f34ce947faa064

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pillow_heif-0.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e65b14032a1d385ceb7baedfdb18223721b7e165766399fa83340147b9e9a0bb
MD5 f1208d1f397f79012a2869138c164407
BLAKE2b-256 4560a6608409dbeec770abff858a0ca1e22a46a814f5f3ce92c67d78000f7621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb4ea32ea6a1108915d964d1dbe4f1687aba4467f8cc71ee312db5457da6a55a
MD5 6723f3a0450abbb1d61603891215f0ee
BLAKE2b-256 9b9d42acfd26203ca2ccfcabda575c6d470b704daf53048f186c9b96726ce679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5207615f2d060b8debd4aaa0f6a4325fdee63c3fe5262dddef9a0b4fa928ef4c
MD5 cda2f95d4d82ad9c823eb55645fea259
BLAKE2b-256 15b2ea92baeb594594bfbdc05a6d7d56cb6824141620cc294ef1c2799d7237d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0337646303fbf8272f53f76c045ac3c06e7c96f4acdddc162ac03ab808e3a004
MD5 13af78b0ddcb8854190224500f9788de
BLAKE2b-256 2469e9bbbabfdbb2ac3b3362f725ff3b52768f0d875c1fb56ed3808d8e0f4940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03c8e619306c69470c087231db508e389d68fbcbe31220433666150f3bb52cf7
MD5 623d349e3b9ca3fcfeab6f22b8da11dd
BLAKE2b-256 4a76586dfa7f7594ae0b0a9b35c880d68e24f1dc2faea42c83701c6f45d6b746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf4e217c10f40adc8d5f1a6deb7e60b7ad3f0f69d05a027be3c5fa7b6415ec8a
MD5 d9bbdd4bd24f04d841dadbc592df3b0a
BLAKE2b-256 ecda34f39ac651ed4c8438d3eb8751016f1284c9177649c2281554f78093da7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b761bd77c2017546e77caf012a955441543bad8ce36e40a220bf1270d9b35e2
MD5 72139e029dc99a2db417b1ce1eccdfb7
BLAKE2b-256 3b887114d34dc4f60292610d6bca8bba9f0f63e67d891a133a4e1ef4008b74f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3927665f53bdaa29460898b0c97fd7c7bfb03517a2f56dc3aeab48428b20c44d
MD5 73cd04366ffd32f0b3bec2791244758d
BLAKE2b-256 7e0821b42c4b24f24fd32b9af1be27d403a09bfdeb48b696ee58b90a97238311

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pillow_heif-0.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cc0350d09f7f768d5859cd9d03e86232e9531832a217c35c81a0800ebdb7f51c
MD5 5f4aef43466a84da308c8bb041733777
BLAKE2b-256 12ea1c8df78d3afaab377d646412bb2d4de0d07260f4cf683d82d1d5b97c3353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe5d22a337a43105c98d8a7107144859e015f60185cd72199a185c1cf1511ef8
MD5 6036ad2e632e3453558b4bb9c9f13059
BLAKE2b-256 640e4403c06ff8b6db856f92026986717655868440b75fea20ab28e8f0705f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 638cb1ef5d62f27ebe168a0d4147872d5fc5fdc338e32c26cff06dfc626bafb3
MD5 9352b95ae8fc0aa43e2acb18666acda1
BLAKE2b-256 d3bac82161afe289992170fe3b780cd961e3a96c9b22636fedbca8c0b6e61b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ff6451ee49ec9baad2e6c20d85b8c060804c1aa7c645edcf0d9170581b4164c2
MD5 e7386d1d77e95c07ae40baa24d7722b3
BLAKE2b-256 bde0b8e6b458f6b0370d03a0e6a5e9eee04c13ae2d7fa04a5003f8c134559d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ba5770e96467b7228e7766cb24a6711855033945e09f1726c1d9f2214762f9e
MD5 12d3d846d6867686f0ee871cd55d2449
BLAKE2b-256 73af73cfc0d806c95ad443e6b27e09a22643b083e217bd5d496553584f1479cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3f7918fc961700fa84de9a53d651805910a857f9ce1d0608ed56d94f04dc8fb
MD5 f832007b620c45c6b8be04ed0a8020d9
BLAKE2b-256 c23717dc99678003db0d0af749a6937a03a5ebdd640accb1ef84eac4af90bd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e6bf7de700a75c112062c147f043447344558203999b981f6f19f5a7af4c8a0
MD5 3ea9e5f682fd057486bb2205ce2d5289
BLAKE2b-256 da0e3abb2c5159d010edf9b1018726d3613a9b5c0f968d0ea98fddeade75099b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55bded9259c4347361ef8b57f5e750298db7840fd21716b3adea56fd2d0c5318
MD5 d5635f148be3874bab85e080dd8bd80b
BLAKE2b-256 add1f7fefcbd930dcd1c0d3fe270692b5821a4771165e961a9901886ea894473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 559fb723fc674a1314b557b9698c63797eaaf707ccf4404ca95ec0df9f049bf2
MD5 7e98d32face2c4b3314852dc02b0d637
BLAKE2b-256 741a9e1de125feca0c282160c83bf5ce26631b225fa87204d4179e8492cff989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3ef50c65b6c6066118efa747d3935fd008c330f07fc9288de987bfb0ffb5ce91
MD5 56d7be46c397da7d71af5c7ce1ed011f
BLAKE2b-256 ef7cc4a0a57fae3456b9366df64317479aed9e3f818bc58d9fab56a65c96fce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 644ecf5ae8f50a2fad7faa66521c5bdf60a3f637b705cfd54b5117256f00f50a
MD5 c417e73ef1752bac98daf14092edd134
BLAKE2b-256 93c1051141e4bd5fdca060ccf8ec0bb926f78b80d3136006174488a429a3f957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9f20ad455c0cb224b84a03876f96ad5a2c5824e28787bbb75bf16cd2c1f473e
MD5 edefc3974306816af935aa88b7c73d79
BLAKE2b-256 2313679f44edde65655a26cc8413281ae2b98d506cbfd91bced16e43ddb7826a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eacd4d3aa4f00a44d01efd48b0bec28765878cc99e184e5951b7de21b76028c5
MD5 88f5415f8523420d02cac7916e957ba4
BLAKE2b-256 19979d88da3a422ae5f9eecad563410c6e05edb0af7cc87c8c6821bac128f67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_heif-0.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 283b2a89869d7351751eb5fdb742107e30ced2866ca7dc29440bbef375e6f906
MD5 e482ad566fce59b0e60544bba934bb62
BLAKE2b-256 f4cc40a7099d573baf730f18a206b8caadfe56b5e182e5ab9d1bed23d1a82494

See more details on using hashes here.

Supported by

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