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:
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user