原因:
在新版本pillow(10.0.0之后)Image.ANTIALIAS 被移除了,取而代之的是Image.LANCZOS or Image.Resampling.LANCZOS,相关描述可以可以在pillow的releasenotes中查到。
方法:
降级Pillow的版本,比如使用9.5.0版本,
pip uninstall -y Pillow
pip install Pillow==9.5.0
原因:
在新版本pillow(10.0.0之后)Image.ANTIALIAS 被移除了,取而代之的是Image.LANCZOS or Image.Resampling.LANCZOS,相关描述可以可以在pillow的releasenotes中查到。
方法:
降级Pillow的版本,比如使用9.5.0版本,
pip uninstall -y Pillow
pip install Pillow==9.5.0