Pillow 移植
2021-07-20 17:29 更新
将现有的基于 PIL 的代码移植到 Pillow
Pillow 是 Python Imaging Library 的功能性替代品。
PIL仅适用于Python 2。Pillow 在 Pillow 7.0 中放弃了对 Python 2 的支持。因此,如果您想运行最新版本的 Pillow,您首先需要将代码从 Python 2 移植到 3。
要使用 Pillow 运行现有的 PIL 兼容代码,需要从PIL
命名空间修改它而不是从全局命名空间导入Image
模块。改变这里:
import Image
对此:
from PIL import Image
这个 PIL._imaging
模块已移至 PIL.Image.core
. 现在可以这样导入它::
from PIL.Image import core as _imaging
图像插件加载机制已更改。 Pillow不再自动导入Python路径中任何名称以ImagePlugin.py
结尾的文件 . 您需要手动导入您的图像插件。
如果由于任何原因无法加载核心扩展,包括python和扩展代码之间的版本不匹配,那么pillow将引发异常。以前,如果核心扩展不可用,PIL只允许python代码运行。
以上内容是否对您有帮助:
更多建议: