AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'
时间: 2023-07-23 21:11:03 浏览: 337
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误是由于PIL库中的Image模块没有ANTIALIAS属性所致。在较新的Pillow库中,ANTIALIAS被更改为Antialias。要解决这个问题,您可以尝试将代码中的"ANTIALIAS"更改为"Antialias"。例如,将`PIL.Image.ANTIALIAS`更改为`PIL.Image.Antialias`。这样应该可以解决该属性错误的问题。
阅读全文