AttributeError: type object 'Image' has no attribute 'new'
时间: 2024-08-16 21:00:54 浏览: 120
OpenCV:解决NoneType错误
5星 · 资源好评率100%
"AttributeError: type object 'Image' has no attribute 'new'" 这是一个Python的常见错误,它发生在尝试访问某个对象(在这个例子中是名为 "Image" 的类型对象)时,但该对象实际上并没有 'new' 这个属性。这通常意味着你在尝试导入或使用的库模块中,Image 类并没有提供 'new' 方法。比如,在PIL(Python Imaging Library)中,Image类可能会有其他方法,如 open()、save() 等,而不是 new。
阅读全文