在ComfyUI Manager Update All 之后,可能会出现以下情况:
module 'PIL.Image' has no attribute 'ANTIALIAS'
它主要是来以下路径:
ComfyUI-Custom-Scripts/py/constrain_image.py
原因:
ANTIALIAS
在 Pillow 10.0.0 中被删除(在之前的多个版本中被弃用)。现在您需要使用PIL.Image.LANCZOS
或PIL.Image.Resampling.LANCZOS
。
(这与提到的算法完全相同ANTIALIAS
,只是您无法再通过名称访问它ANTIALIAS
。)
解决方案:
修改第50行代码为:
resized_image = img.resize((constrained_width, constrained_height), Image.LANCZOS)