Commit 237a38f4 by BellCodeEditor

auto save

parent 12f65d8d
Showing with 2 additions and 3 deletions
from tkinter import filedialog,Tk from tkinter import filedialog,Tk
from PIL import Image from PIL import Image
rt=Tk() rt=Tk()
rt.withdraw() rt.withdraw()
ph=filedialog.askopenfilenames(title='选择图片文件',filetypes=[('png','.png')],initialdir='./') ph=filedialog.askopenfilenames(title='选择图片文件',filetypes=[('png','.png')],initialdir='./')
il=[] il=[]
for i in ph: for i in ph:
im=Image.open(i) im=Image.open(i)
il.append(im) il.insert(0,im)
il[0].save("Robot.gif", save_all=True,append_images=il[1:]) il[0].save("dive2.gif", save_all=True,append_images=il[1:])
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment