DeprecationWarning: ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use LANCZOS or Resampling.LANCZOS instead. img = img.resize((fix_image_width, fix_image_height), Image.ANTIALIAS)
时间: 2024-02-07 09:01:47 浏览: 152
解决 warning 显示 The linear_assignment function is deprecated in 0.21 and will be removed from 0.23. Us…
这个问题是一个警告(DeprecationWarning),提示使用的方法在未来会被移除。具体来说,Pillow软件包中的ANTIALIAS参数将在2023年被移除,建议使用LANCZOS或Resampling.LANCZOS参数代替。在这段代码中,img.resize()函数使用了过时的ANTIALIAS参数,你可以改为使用LANCZOS或Resampling.LANCZOS参数,以避免未来的问题。
阅读全文