deprecationwarning: nearest is deprecated and will be removed in pillow 10 (2023-07-01). use resampling.nearest or dither.none instead. 'nearest': image.nearest,
时间: 2023-05-01 17:00:03 浏览: 289
警告:nearest已被弃用,并将在pillow 10(2023-07-01)中删除。请改用resampling.nearest或dither.none。'nearest':image.nearest。
相关问题
DeprecationWarning: ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use LANCZOS or Resampling.LANCZOS instead.
这是一条关于 Pillow 库中 ANTIALIAS 参数的 DeprecationWarning 警告信息。该参数将在 Pillow 10 版本中移除,预计在2023年7月1日之前。建议使用 LANCZOS 或 Resampling.LANCZOS 来替代 ANTIALIAS 参数。ANTIALIAS 是一种抗锯齿滤波算法,而 LANCZOS 是一种插值滤波算法。你可以更新你的代码,将 ANTIALIAS 替换为 LANCZOS 或 Resampling.LANCZOS,以兼容未来的 Pillow 版本。
DeprecationWarning: textsize is deprecated and will be removed in Pillow 10 (2023-07-01). Use textbbox or textlength instead.
感谢提醒,确实如此。在Pillow版本更新后,textsize方法会被弃用。因此,将以下代码:
```python
code_width, code_height = draw.textsize(code, font)
```
替换为:
```python
code_width, code_height = font.getsize(code)
```
即可避免出现 DeprecationWarning 的警告信息。
阅读全文