使用 Pillow 库打开 heic heif 格式的图片

本文最后更新于 2024年10月20日 中午

Apple 相册中存在 heic 格式的图片,在 Python 中无法用一般方法打开。

1
pip install pillow_heif
1
2
3
4
5
6
from PIL import Image
from pillow_heif import register_heif_opener

register_heif_opener()

image = Image.open('image.heic')

参考


使用 Pillow 库打开 heic heif 格式的图片
https://term-inator.github.io/2023/06/14/open-heic-image-by-Pillow/
作者
Sicong Chen
发布于
2023年6月14日
更新于
2024年10月20日
许可协议