Commit 2b3ba018 by BellCodeEditor

save project

parent a1b1d1dd
Showing with 18 additions and 0 deletions
from PIL import Image
from tkinter import filedialog
from tkinter import Tk
w=Tk()
w.withdraw()
path = filedialog.askopenfilenames(title='选择图片文件',
filetypes=[("png", ".png")],
initialdir="./")
imgl=[]
for i in path:
img = Image.open(i)
imgl.append(img)
imgl[0].save("MyGIF.gif",save_all=True,append_images=imgl[1:])
print(path)
dive.gif

1.9 MB

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