【使用Python修改gif尺寸大小】

from PIL import Image
from PIL import ImageSequence
im = Image.open('./loading3.gif')
resize_frames= [frame.resize((frame.width // 2, frame.height // 2)) for frame in ImageSequence.Iterator(im)]
resize_frames[0].save("small.gif", save_all=True, append_images=resize_frames[1:])
print("Done!")

原gif:

修改后:
【使用Python修改gif尺寸大小】_第1张图片

你可能感兴趣的:(数字图像处理与分析,python,gif)