libheif库的Python接口
项目描述
pillow-heif
用于处理HEIF图像的libheif库的Python绑定和Pillow插件。
功能
- 解码8、10、12位HEIC和AVIF文件。
- 编码8、10、12位HEIC和AVIF文件。
- 支持读取和写入EXIF、XMP、IPTC。
- 支持单个文件中的多个图像和PrimaryImage属性。
- 添加和删除缩略图。
- 深度图像的读取。
- 通过一行代码将HEIF支持添加到Pillow作为插件。
注意:这是一个没有编码功能的项目轻量版本 pi-heif。
安装
python3 -m pip install -U pip
python3 -m pip install pillow-heif
作为Pillow插件的使用示例
from PIL import Image
from pillow_heif import register_heif_opener
register_heif_opener()
im = Image.open("image.heic") # do whatever need with a Pillow image
im = im.rotate(13)
im.save(f"rotated_image.heic", quality=90)
使用OpenCV将16位PNG转换为10位HEIF
import cv2
import pillow_heif
cv_img = cv2.imread("16bit_with_alpha.png", cv2.IMREAD_UNCHANGED)
heif_file = pillow_heif.from_bytes(
mode="BGRA;16",
size=(cv_img.shape[1], cv_img.shape[0]),
data=bytes(cv_img)
)
heif_file.save("RGBA_10bit.heic", quality=-1)
使用OpenCV将8/10/12位HEIF转换为8/16位PNG
import numpy as np
import cv2
import pillow_heif
heif_file = pillow_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)
访问解码的图像数据
import pillow_heif
if pillow_heif.is_supported("image.heic"):
heif_file = pillow_heif.open_heif("image.heic", convert_hdr_to_8bit=False)
print("image size:", heif_file.size)
print("image mode:", heif_file.mode)
print("image data length:", len(heif_file.data))
print("image data stride:", heif_file.stride)
将解码的图像数据作为NumPy数组获取
import numpy as np
import pillow_heif
if pillow_heif.is_supported("input.heic"):
heif_file = pillow_heif.open_heif("input.heic")
np_array = np.asarray(heif_file)
AVIF支持
与AVIF
文件的处理方式与HEIC
文件相同。只需使用单独的函数来注册插件。
import pillow_heif
pillow_heif.register_avif_opener()
访问深度图像
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"])
更多信息
轮子
轮子表 | macOS Intel |
macOS 硅 |
Windows |
musllinux* | manylinux* |
---|---|---|---|---|---|
CPython 3.8 | ✅ | N/A | ✅ | ✅ | ✅ |
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 轮子。
项目详情
关闭
pillow_heif-0.18.0.tar.gz 的散列值
算法 | 散列摘要 | |
---|---|---|
SHA256 | 70318dad9faa76121c6592ac0ab59881ff0dac6ab791a922e70d82c7706cce88 |
|
MD5 | 590d50e10e6b79d69e73823bbe836544 |
|
BLAKE2b-256 | c9bbe7797fe7f5cad447bb470f916ead38f0929e8d28bdf6bd5d9f31dfe1ac26 |
关闭
pillow_heif-0.18.0-pp310-pypy310_pp73-win_amd64.whl 的散列值
算法 | 散列摘要 | |
---|---|---|
SHA256 | 8ee07e334f99bdf399d207bb19653496c65fcbf006f2cee964047f6d6d57acd9 |
|
MD5 | ccb0ae54b6064e5f95567b6115bc8670 |
|
BLAKE2b-256 | bf4d6b252a62a8c009400b962eea95fe479b27044d1bb06fd97cfe112ca24ed9 |
关闭
pillow_heif-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 的散列值
算法 | 散列摘要 | |
---|---|---|
SHA256 | 7649431ea30a9c342888d814f07d2aed9cab06ef5fe5bf065d514eceb2c8d24e |
|
MD5 | bf9f772cd6ef4f8367e6813c04c64b2a |
|
BLAKE2b-256 | 556c9a34c5812fc166ed495878516f13a558b71aeb8ac96531b9ffbf6976c417 |
关闭
pillow_heif-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl 的散列值
算法 | 散列摘要 | |
---|---|---|
SHA256 | d9a8ab9803d79e84e7751cc0930d381112efbf71461ca123a5c2b7abf1050c72 |
|
MD5 | d954f47e17c5eb92dfd4c1316f216195 |
|
BLAKE2b-256 | da4ea2381848f85237a92856292bf4106414688283c19135151bd03ff436f468 |
关闭
pillow_heif-0.18.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl 的散列值
算法 | 散列摘要 | |
---|---|---|
SHA256 | 89b1d63be7e8036ab45f0cd58e27e54113cfd7e852e91606b5cec4fa788a503f |
|
MD5 | cf9e5cbb3eaaba4a745a520a6109833e |
|
BLAKE2b-256 | c5b67c691b14d2e545f8f612fc8aab229728bba0a78be40ed02ee7d1f81eb9c3 |
关闭
哈希值 用于 pillow_heif-0.18.0-pp310-pypy310_pp73-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 744b8a00a817e7139a7e2fd296092689116700dfd63e34941abdc8ae85b3a982 |
|
MD5 | e81687ff071a484cf8ea6bd37a840a6c |
|
BLAKE2b-256 | 95a5b2fcddccbec2b2d0711172809cd707cd5228e68388b7cbddf5e628f2698b |
关闭
哈希值 用于 pillow_heif-0.18.0-pp39-pypy39_pp73-win_amd64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 7ef23775de70124a02ad9be69af58126ec63a2e2987495355e75cabb265c01cb |
|
MD5 | 352bdd55c8ebf1ce7275ad4462b48da1 |
|
BLAKE2b-256 | 0348ed622bfb10d7e3cc8cbd1085281cc71e77782329b370cdf0ffc35f8b6a3f |
关闭
哈希值 用于 pillow_heif-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 8988a9ce18425aff189913905ce28e61220061c3f222e08213eb473b88a41a20 |
|
MD5 | b95f3e158990380fd7a10064e342d81e |
|
BLAKE2b-256 | 33c233a2067d45aea90662df0380878cbc2ee1b27da1776db134a4f8c0bc4246 |
关闭
哈希值 用于 pillow_heif-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 28358d5e4e3aeb4af2a60a20187099ba03ab8619bcec8212900657371778da96 |
|
MD5 | b5b07f862274fbe4ad610c16232e71c6 |
|
BLAKE2b-256 | b3b78381d5228b33ea78aaf00d9fa44a89f1476227bf2663b7bc0b5bb3169f03 |
关闭
哈希值 用于 pillow_heif-0.18.0-pp39-pypy39_pp73-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 5908e8079f62ec8ace9e7c554691a82ece088d0945d980a877e981f208e85193 |
|
MD5 | a61a78671ca30ce862d7a6bb60202f91 |
|
BLAKE2b-256 | ec3f07fd2e014dda68d3d5b2500b607d77c747929e3c74bad6f49864daad1648 |
关闭
哈希值 用于 pillow_heif-0.18.0-pp39-pypy39_pp73-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 4148a7f17d184c815f428949d6e60582136ef0802a7462c842ee9fe15ca9be16 |
|
MD5 | 1d342ae2126333db3b8c4f79efbe12b6 |
|
BLAKE2b-256 | 1aaf460449c0d87493cf485e7db11bd730b1e360997a808fde25d5db5846b1cd |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | f552419c8bd754603f1dfbc7f8cdd666118fdd3d063d67974c5bd5a8d7fed9de |
|
MD5 | 3957c4a61c8f33c49641339d94e00b03 |
|
BLAKE2b-256 | 17d26145fe35b4ef257e8739834911a5fc50d93f338437b318682ab9b9a6656e |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 0138a08ed90e54c230878c0b8cb92447ad591b7b2e86bfca145029322ba384c7 |
|
MD5 | 0409fc6bebff2db98bdd49d217f26713 |
|
BLAKE2b-256 | 90def8918a1afcd2edb513995c2dcb3c195d44300782cafd4e6a12d8b58d07b4 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 3549e26a65e04e7e986888993b03aae0f848576c2404b5edf12d7db76ef2e72b |
|
MD5 | 8e000f7b420b5772729af548b669b1a4 |
|
BLAKE2b-256 | 6117c3ae8b3bc6a001ea86720c8be77e3120d0225e93f7c8762911d020940b23 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 8376309e178f39a2891183cb9662f1c2c87b8614ff13871f077f89edf65ecf48 |
|
MD5 | 2ff8af0a6a388278896ef4614180b525 |
|
BLAKE2b-256 | 848f65caf4adbe8d896c8373e82643059424001ee6519b819fb1920d5eb8f74c |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 2821d30d22bbb94c2a0fae25eb566421bf22c909958e031d3f0973b482b88515 |
|
MD5 | 2b9b1461f0c850aa2762464ec9155636 |
|
BLAKE2b-256 | 29e0f398fa67928dc24d45662e4dac6c686fce9536786bcc6a251c4936ce95c0 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp313-cp313-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | ca554f086bc146f1a798adcd77fdecd81564cc0cd74802ee61e3869ab87282f7 |
|
MD5 | 31617c061e11f8fef8474737e1d72846 |
|
BLAKE2b-256 | 7b633f2b414d86ddadb79c6ee43bf88fc88b7b947983e7780c69ae2cc431f613 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 0276a3e0c667677ed0c67f4512cdf2f674065018049307ba4de5cb4648b0a33e |
|
MD5 | 0b2da20ad180deaeeff303fc2cd8dcc9 |
|
BLAKE2b-256 | 4820a72297dc260d0bf8fce8f209d36ceb498b2f1e8beb478a0ab3f565c9a3c9 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 26a0b8b8e899e7bcc876ee61fcadb0f0b849bd6a0d5c20f0e969c77a43b40568 |
|
MD5 | 1ccdf7c6c38e0cb0e931bee489764ae9 |
|
BLAKE2b-256 | d8593b1c90f7d366fb653f5f072803ae6350e608bea0d0d0ea65d6e7764c470f |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 35b59d599bfdb8454739db6b92f0841ecadbe887babb5ed5abd5299587843eef |
|
MD5 | 992c918f9c759f8b74bf5d9593dff7a5 |
|
BLAKE2b-256 | 4b71a8b3684f64307b96ea0ae14594564b41fdf4d4a6f7df5ef73d180a71db5d |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | eb2eade59c2654c2643a3b637de37c19e75a77c66a3e9a5e0ae26210e4f48aee |
|
MD5 | f313f7ac0967fa21e08ad90f950c07c2 |
|
BLAKE2b-256 | f861f0aac50a7ad051e1cb71ed7a8d3a94b5e54ea8ed1acb03586f0fcdebd730 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 4dd5b3ec09be45c1ef63be31773df90e18ee08e5e950018b0a349924b54a24ac |
|
MD5 | 2a8c00a3388455faf17e5a6a29bd0c80 |
|
BLAKE2b-256 | 3cd88f2f8f44b6fc3689ace680b21655a0eabb1393f8e66b8851b0f95b8aac1c |
关闭
哈希值 用于 pillow_heif-0.18.0-cp312-cp312-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | c795e7ccceea33e01e49ce536139f94cabb1bf017393666f76c05a9daebae2da |
|
MD5 | 663a92ac94871663451b779c8ba4a659 |
|
BLAKE2b-256 | 5a484bdce48d77c307b50bba0c77d6485e156f0fefcca273ce007351ad1deb40 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | c8bebd570446a7b4f7db5ca8eb333dd4591fda13524bc49eee34b3f5cf40741b |
|
MD5 | 65bac017a49f0e82d67a9dd1901c2b73 |
|
BLAKE2b-256 | 97e3cd22b052a08f95fd19c1564144aabc20ec6c1030754fd589c13708fc07ae |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 2902460d60843e2c379320f1b752a6d4879e3ab0479674ee323d7dee487cccc8 |
|
MD5 | 1f4778ec41cd1005a6a89df2f6a0a973 |
|
BLAKE2b-256 | 9e6c1e4fb6147ddef3655424926d88b82b57d05d4c9310b7acf93509cccf8f84 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | b8782f9f82c534f4a37ce3c609505f992f340a495da1247951108218a201d0e9 |
|
MD5 | 3ce9e0700c8b789c22296e5481adab88 |
|
BLAKE2b-256 | 2a4e8de02c206f2b850b3df14e159223b8419a6b657e0bf3169aedaee788a067 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 68781589ee03bf4bd670e55444c25cb0784451b0beacfb0f79d7f56ae497a767 |
|
MD5 | 1ffbcf2ca99b6fed1d067aaa1f02d7eb |
|
BLAKE2b-256 | d1d54fd2033fac2c46ed28cd2468a36ab6f6c03188c98666614129fb54fea275 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 2a4c41e76f2da4e046f170cb3716b7aedc466a194509bc0bf1a7c735d5278b8c |
|
MD5 | 2fd32892088a8a3d56108598fa7e9a14 |
|
BLAKE2b-256 | fbbf9673bdd6eb98cb31d1c2281647f225ada9a57ada5b812502740681f5b718 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp311-cp311-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | a5d8bfcf8b23b67b8937bcc25fd464f1ca383d3d1d65220463be81ccf6c8185b |
|
MD5 | 1f0cf7a78582ce456facf040fe246ec2 |
|
BLAKE2b-256 | 35d0a0ae135a69f5231c3d0c6be5ebd0581ab1d0dba070a85b21f3ee11eb5de6 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 8612f4c2e8a3388647c3ce0b7810398cf941aceecd4b2c7790331a53117baf10 |
|
MD5 | 551c246664693c89796e48635f548658 |
|
BLAKE2b-256 | af15ef96967a5862023c2705da4f7e4f1da81081a63cd67c7a7d4a0e0b264227 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 06649ea6bfac8ca5e7ac898c78c4aad2fd0bc1ce278fa86c503170010902193b |
|
MD5 | a58cce1b4e227c94803dc2903285fefd |
|
BLAKE2b-256 | f36c9010dbc8ffe3e7d1d5b25c3074f99ac67598eb976c978716174dc6703da6 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 2f032593b3cfc96970efc91860ef6eaa62b1e661418d7f9ec186dff9ac7c9844 |
|
MD5 | d92953b69f3b78c318e8c6e02b8df7cc |
|
BLAKE2b-256 | e5a5c47f7df81f5fe3c9b90752c872299b9bbeac17129769ec78648e205e3e70 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | d524458837bdc5410f66de8e68e864bd179d19a1c205daf7f8c9a07194cc5615 |
|
MD5 | e82221ebb439a01e3c331a1cb509c597 |
|
BLAKE2b-256 | b6068d8734be6ca19a2c2f0010b406dc571906e7a285c4af97d648c07e1098e9 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | c45b8d19d8bb1fc61f1f648d042da16d9085506055665a64b56ce8d8ed83c42b |
|
MD5 | 9d57f522484ab5f7dc0202aa5f7ea3a5 |
|
BLAKE2b-256 | 74d727b6a136f09c1d86ad94f6a3e133e2ea44e949c43f0a4fd4b84ae4194821 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp310-cp310-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | e1ad1d97f42fc39de8639b3f45d4d053e00158fc64f1674a14d8912cf81791e3 |
|
MD5 | 7b5bb4b4f5d09de4b6909f9984c031eb |
|
BLAKE2b-256 | a451c647d81a240147c40836219c8f51fa89773569b65f350eaf364379b6e6d1 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | f403aadee232509ee2fdedbfda2dd0bae75098e70a8ddcc010061f92ab962517 |
|
MD5 | ce3e72b1a9ca38dc76e1124265260976 |
|
BLAKE2b-256 | 224549adc08afb8c9e7d1670cc17c24e6d9c8ee12580a36ebbf84858df670fe1 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 7666cbab98246cf9355625e66bf1bb885fdcf8ff4a917f4db04231e80ea692ee |
|
MD5 | 9919b673be9c5423047d5b90cb7449ab |
|
BLAKE2b-256 | ec2c22675ab48b78b53d7b72396968ab6c10f689e630fc39f587b9f106e79b7e |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 165430447de0f7da259eb07d9487571784912a64c75cd0c52d0d506c114ec7ce |
|
MD5 | b28b1463142d732f9f8170d090e1f2ed |
|
BLAKE2b-256 | b6ddfaf25a5b12d46877df3a42ab3a712bd91b7ef50e77d4b95267a47dc6d5d7 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 02af8950d190e3bea28ed2d0ca40798eeae88eaf6e099ee44ec654667f979d97 |
|
MD5 | 758ce80f1cf8e62ca3358a7497892eeb |
|
BLAKE2b-256 | b4d3a1d91fb244a2bdfc15bba34dcad38c549179d43555437b3af72405fb4fe0 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-macosx_14_0_arm64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 8b0b9a66e604aef2d0a19a7cb2247c5f9b3352827bb1b00816053ce4982ec8ab |
|
MD5 | 897f3dcbb81742b013dd584aa764ea0a |
|
BLAKE2b-256 | 265d147f3cfcf029870f8715f49ddbf1dd7a0bb387bb339ef8b7f6c4b04ba32d |
关闭
哈希值 用于 pillow_heif-0.18.0-cp39-cp39-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 3af89fa7a73143bc49fc18f92b1a6c0fa68ecb56fb56224fb369c2f56729fbb6 |
|
MD5 | 82624ca96863269c13cd8434ac7e4fd2 |
|
BLAKE2b-256 | 0ea1664d7ea319e01cdc822b5a79b40a2cf4c1f190def2872e569face8d79bb0 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 35d2d7199dc34f28aef39cec984c043b1ee30d5c46048566584dc61cf4108c09 |
|
MD5 | c8bdd9cb4396c3febff131a735962119 |
|
BLAKE2b-256 | c701fd4cb101940148aac6e1f5d475612cefe2cf5a5b70bc32503020c49458b9 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 5b2ee478e373c0502dc431b22840dd0c551c4ce0e1007ab13f038a868ed375c1 |
|
MD5 | ce45f48ca7c8a682a0d83760a822b986 |
|
BLAKE2b-256 | 9d508aa23ab2d19677bf583edfe8c34030775e08aefca7af3c7ed546ffceee6a |
关闭
哈希值 用于 pillow_heif-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | 21b9080d96d51158774e3022fc9af19b650863cbb23fac991458cb354b1aa63d |
|
MD5 | 748b0efb9fbb9937e78a197ae4d8bf1f |
|
BLAKE2b-256 | 1683ae31ee5531d391aac06c5f30d2de5173d62e7e05fd2b8be986e4c73dfb31 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | d8e8e9860259688700f13baed015632c4ddaf813d26cc856e37ebf0a3f171661 |
|
MD5 | 3cf46327a9bc4a6801ea0451d8e65188 |
|
BLAKE2b-256 | 62a95471d363285b48e7a6f7cfe04d9f79130b7d870bd293b14cc776c9234646 |
关闭
哈希值 用于 pillow_heif-0.18.0-cp38-cp38-macosx_12_0_x86_64.whl
算法 | 散列摘要 | |
---|---|---|
SHA256 | bca173920f16ea8d1c40a970f002be15ac34a5fa99d39403a85472e265db2357 |
|
MD5 | c936ac2e7b8f89672a740f45535cc9c3 |
|
BLAKE2b-256 | caaf82d521be4de9d10719bd5633bc75d7eafcd6ae755e80d05b4665449e4ceb |