报错‘TransposedFont’ object has no attribute ‘getbbox’怎么解决
时间: 2023-08-11 18:05:44 浏览: 1752
python报错: list object has no attribute shape的解决
这个错误通常是由于 PIL 库版本较低导致的。你可以尝试更新 PIL 库,或者使用 Pillow 库代替 PIL 库。
如果你使用的是 Python 2.x 版本,可以尝试执行以下命令来更新 PIL 库:
```
pip install --upgrade PIL
```
如果你使用的是 Python 3.x 版本,可以尝试执行以下命令来安装 Pillow 库:
```
pip install Pillow
```
安装完成后,你可以将代码中的 `import Image` 替换为 `from PIL import Image`,并将代码中的 `ImageFont`、`ImageDraw` 和 `Image` 替换为 `PIL.ImageFont`、`PIL.ImageDraw` 和 `PIL.Image`。这样就可以避免出现 `TransposedFont’ object has no attribute ‘getbbox’` 的错误了。
阅读全文