Commit 7a439924 by BellCodeEditor

save project

parent f34b60b6
Showing with 5 additions and 2 deletions
...@@ -6,4 +6,7 @@ root.withdraw() ...@@ -6,4 +6,7 @@ root.withdraw()
path=filedialog.askopenfilenames(title='选择图片文件', path=filedialog.askopenfilenames(title='选择图片文件',
filetypes=[('All Filse','*')], filetypes=[('All Filse','*')],
initialdir="./") initialdir="./")
print(path) img_list=[]
\ No newline at end of file for i in path:
img=Image.open(i)
img_list.append(img)
\ 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