Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson22-diy1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1c67c13b
authored
Apr 16, 2023
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
1e162f45
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
20 deletions
My_GIF.py
b.py
take out and in.py
xbdts.gif
My_GIF.py
View file @
1c67c13b
from
tkinter
import
filedialog
,
Tk
from
PIL
import
Image
root
=
Tk
()
root
.
withdraw
()
path
=
filedialog
.
askopenfilenames
(
title
=
'选择图片文件'
,
filetypes
=
[(
'png '
,
'.png'
)],
initialdir
=
'./'
)
img_list
=
[]
for
i
in
path
:
img
=
Image
.
open
(
i
)
img_list
.
insert
(
0
,
img
)
img_list
[
0
]
.
save
(
"bot.gif"
,
save_all
=
True
,
append_images
=
img_list
[
1
:])
print
(
img_list
)
rt
=
Tk
()
rt
.
withdraw
()
ph
=
filedialog
.
askopenfilenames
(
title
=
'选择图片文件'
,
filetypes
=
[(
'png'
,
'.png'
)],
initialdir
=
'./'
)
il
=
[]
for
i
in
ph
:
im
=
Image
.
open
(
i
)
il
.
append
(
im
)
il
[
0
]
.
save
(
"Robot.gif"
,
save_all
=
True
,
append_images
=
il
[
1
:])
a
from
tkinter
import
filedialog
,
Tk

gg
from
PIL
import
Image

s
=
Tk
()
s
.
withdraw
()

ph
=
filedialog
.
askopenfilenames
(
title
=
'选择图片文件'
,
filetypes
[(
'png'
,
'.png'
)],
initialdir
=
'./'
)

b.py
View file @
1c67c13b
from
tkinter
import
filedialog
,
Tk
from
tkinter
import
filedialog
,
Tk
from
PIL
import
Image
rt
=
Tk
()
rt
.
withdraw
()
path
=
filedialog
.
askopenfilenames
(
title
=
'选择图片文件'
,
filetypes
=
[(
'png'
,
'.png'
)],
initialdir
=
'./'
)
sequence
=
[]
for
i
in
path
:
img
=
Image
.
open
(
i
)
sequence
.
append
(
0
,
img
)
sequence
[
0
]
.
save
(
"bot.gif"
,
save_all
=
True
,
append_images
=
sequence
[
1
:])
\ No newline at end of file
ph
=
filedialog
.
askopenfilenames
(
title
=
'选择图片文件'
,
filetypes
=
[(
'png'
,
'.png'
)],
initialdir
=
'./'
)
il
=
[]
for
i
in
ph
:
im
=
Image
.
open
(
i
)
il
.
insert
(
0
,
im
)
il
[
0
]
.
save
(
"xbdts.gif"
,
save_all
=
True
,
append_images
=
il
[
1
:])
take out and in.py
View file @
1c67c13b
...
...
@@ -4,4 +4,4 @@ im=Image.open('dive.gif')
num
=
0
for
i
in
ImageSequence
.
Iterator
(
im
):
i
.
save
(
'turn/'
+
str
(
num
)
+
'.png'
)
num
+=
1
\ No newline at end of file
num
+=
1
xbdts.gif
View file @
1c67c13b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment