美文网首页
python gif (帧 选择)

python gif (帧 选择)

作者: 章鱼杂咀 | 来源:发表于2017-09-30 11:59 被阅读0次
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 (帧 选择)

      本文链接:https://www.haomeiwen.com/subject/femgextx.html