DeprecationWarning: textsize is deprecated and will be removed in Pillow 10 (2023-07-01). Use textbbox or textlength instead.
时间: 2024-03-13 17:43:04 浏览: 271
textbox的长度随着内容而改变
5星 · 资源好评率100%
感谢提醒,确实如此。在Pillow版本更新后,textsize方法会被弃用。因此,将以下代码:
```python
code_width, code_height = draw.textsize(code, font)
```
替换为:
```python
code_width, code_height = font.getsize(code)
```
即可避免出现 DeprecationWarning 的警告信息。
阅读全文