python gif (帧 选择)

from PIL import Image
im = Image.open('octopus_1.gif')
try:
    im.save('picframe{:02d}.png'.format(im.tell()))
    while True:
        im.seek(im.tell()+1)
        im.save('picframe{:02d}.png'.format(im.tell()))
except:
    print("处理结束")
octopus_1.gif
picframe09.png
picframe13.png

你可能感兴趣的:(python gif (帧 选择))