-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbananaViewer.py
85 lines (71 loc) · 2.33 KB
/
bananaViewer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import tkinter as tk
from PIL import Image, ImageTk
import os
while True: # ask for a path
path = input("Path :")
if os.path.exists(path): # check if dir_path exist
break
else:
print("Wrong path")
tab_temp = []
for file in os.listdir(path): # load every file in the dir_path
print(os.path.join(path, file))
tab_temp.append(os.path.join(path, file))
tab=[]
for e in tab_temp:
if e[len(e)-4:] == ".jpg" or e[len(e)-4:] == ".png" :
tab.append(e)
root = tk.Tk()
root.title("BananaViewer")
width = 1024
height = 720
pic_width = 922
pic_height = 648
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
x = (screen_width / 2) - (width / 2)
y = (screen_height / 2) - (height / 2)
root.geometry("%dx%d+%d+%d" % (width, height, x, y))
root.resizable(0, 0)
def delete(event=None):
"""
delete the curent images and switch to the next one
:param event: not used, the keyboard input pass an argument, the button not, so it as to be pass and handle
"""
if len(tab) == 1:
os.remove(tab[0])
print("Done")
exit()
else:
os.remove(tab[0])
tab.pop(0)
print("Restant : " + str(len(tab)))
root.photo = ImageTk.PhotoImage(Image.open(tab[0]).resize((pic_width, pic_height), Image.ANTIALIAS))
vlabel.configure(image=root.photo)
print("deleted")
def change_pic(event=None):
"""
Switch to the next image
:param event: not used, the keyboard input pass an argument, the button not, so it as to be pass and handle
"""
if len(tab) == 1:
print("Done")
exit()
else:
tab.pop(0)
print("Restant : " + str(len(tab)))
root.photo = ImageTk.PhotoImage(Image.open(tab[0]).resize((pic_width, pic_height), Image.ANTIALIAS))
vlabel.configure(image=root.photo)
print("kept")
root.photo = ImageTk.PhotoImage(Image.open(tab[0]).resize((pic_width, pic_height), Image.ANTIALIAS))
vlabel = tk.Label(root, image=root.photo)
vlabel.pack()
root.bind("<Left>", delete)
root.bind("<Right>", change_pic)
b = tk.Button(root, text="Delete\n(Left)", command=delete)
b.pack()
b.place(x=150, y=660, height=50, width=250)
b2 = tk.Button(root, text="Keep\n(Right)", command=change_pic)
b2.pack()
b2.place(x=624, y=660, height=50, width=250)
root.mainloop()