Rename Pillow constant Image.ANTIALIAS to Image.Resampling.LANCZOS

Image.ANTIALIAS was deprecated in Pillow v2.7 in favour of Image.LANCZOS,
and removed in v10. Instead Image.LANCZOS or Image.Resampling.LANCZOS
should be used.
This commit is contained in:
Bradley Falzon
2023-08-23 18:47:12 +09:30
parent f60c80139c
commit 59ef76dce6

View File

@@ -146,7 +146,7 @@ def extract_frame(video_file_clip, moment, output_prefix, size, frame_count):
def resize_frame(filename, size):
image = Image.open(filename)
image = image.resize(size, Image.ANTIALIAS)
image = image.resize(size, Image.Resampling.LANCZOS)
image.save(filename)