Commit 3af17f86 by BellCodeEditor

save project

parent c6dd80a2
from PIL import Image,ImageSequence
img = Image.open("dive.gif")
num=0
for i in ImageSequence.Iterator(img):
i.save(r"./img"+str (num)+".png")
num += 1
\ No newline at end of file
img0.png

48.4 KB

img1.png

47.9 KB

img10.png

52.1 KB

img11.png

52.6 KB

img12.png

51.8 KB

img13.png

51.4 KB

img14.png

50.2 KB

img15.png

50.9 KB

img16.png

50.2 KB

img17.png

50.2 KB

img18.png

50.1 KB

img19.png

50.1 KB

img2.png

47.7 KB

img20.png

49.8 KB

img22.png

50.2 KB

img23.png

50.1 KB

img24.png

50.3 KB

img25.png

50.9 KB

img26.png

49.9 KB

img27.png

48.9 KB

img28.png

49.1 KB

img29.png

49.6 KB

img3.png

48.3 KB

img30.png

49.4 KB

img32.png

49.1 KB

img33.png

49.3 KB

img35.png

48.4 KB

img36.png

48.2 KB

img4.png

48.2 KB

img5.png

49.1 KB

img6.png

50.1 KB

img7.png

52 KB

img8.png

51.7 KB

img9.png

52.1 KB

from tkinter import filedialog,Tk from tkinter import filedialog,Tk
#pillow
from PIL import Image
windows = Tk() windows = Tk()
windows.withdraw() windows.withdraw()
my_files = filedialog.askopenfilenames(title = '选择你的图片', my_files = filedialog.askopenfilenames(title = '选择你的图片',
filetypes=[('png','png')], filetypes=[('png','png')],
initialdir='./') initialdir='./')
print(my_files) print(my_files)
\ No newline at end of file
image_list = []
for i in my_files:
img=Image.open(i)
image_list.append(img)
image_list[0].save("bot.gif",save_all = True,append_images=image_list[1:])
\ No newline at end of file
from tkinter import filedialog,Tk
from tkinter import filedialog,Tk
windows = Tk()
windows.withdrow()
my_files = filedialog.askopenfilenames(title = '选择你的图片',
filetypes=[('png,'png')],
initialdir=',/')
\ No newline at end of file
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