將gif圖片轉成PNG圖片im = Image.open('image.gif') def iter_frames(im): try: i= 0 while 1: im.seek(i) imframe = im.copy() if i == 0: palette ...
確定! 回上一頁