AttributeError: ImageDraw object has no attribute textbbox
时间: 2023-08-28 14:05:50 浏览: 226
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为你正在使用 `ImageDraw` 对象的 `textbbox()` 方法,但是该对象并没有此方法。可以检查一下代码中是否有拼写错误或者变量名错误。另外,也可以查看一下 `ImageDraw` 对象的文档,确认该对象是否有 `textbbox()` 方法。如果没有,你可以尝试使用其他方法来计算文字的边界框。
阅读全文