AttributeError: module 'PIL.Image' has no attribute 'new
时间: 2023-11-08 08:05:01 浏览: 67
Python PIL图像处理
这个错误是由于PIL库版本不兼容导致的。在新版本的PIL库中,Image模块被移动到了子模块中,所以需要将导入的方式修改为`from PIL import Image`。同时,PIL库中的Image类没有new方法,你可能需要使用其他方法来创建新的图像对象。你可以尝试使用`Image.new(mode, size, color)`来创建一个新的图像对象,其中mode表示颜色模式,size表示图像的尺寸,color表示背景颜色。
阅读全文