-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageviewer.py
66 lines (46 loc) · 1.94 KB
/
imageviewer.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
from tkinter import *
from PIL import ImageTk,Image
root = Tk()
root.title('CSP Image Viewer')
root.iconbitmap('c:/gui/codemy.ico')
my_img1 = ImageTk.PhotoImage(Image.open("images/pepogld.png"))
my_img2 = ImageTk.PhotoImage(Image.open("images/peepoglad.png"))
my_img3 = ImageTk.PhotoImage(Image.open("images/duckplacebo.png"))
my_img4 = ImageTk.PhotoImage(Image.open("images/pikabruh.png"))
my_img5 = ImageTk.PhotoImage(Image.open("images/susmanimposter.png"))
image_list = [my_img1, my_img2, my_img3, my_img4, my_img5]
my_label = Label(image=my_img1)
my_label.grid(row=0, column=0, columnspan=3)
def forward(image_number):
global my_label
global button_forward
global button_back
my_label.grid_forget()
my_label = Label(image=image_list[image_number-1])
button_forward = Button(root, text=">>", command=lambda: forward(image_number+1))
button_back = Button(root, text="<<", command=lambda: back(image_number-1))
if image_number == 5:
button_forward = Button(root, text=">>", state=DISABLED)
my_label.grid(row=0, column=0, columnspan=3)
button_back.grid(row=1, column=0)
button_forward.grid(row=1, column=2)
def back(image_number):
global my_label
global button_forward
global button_back
my_label.grid_forget()
my_label = Label(image=image_list[image_number-1])
button_forward = Button(root, text=">>", command=lambda: forward(image_number+1))
button_back = Button(root, text="<<", command=lambda: back(image_number-1))
if image_number == 1:
button_back = Button(root, text="<<", state=DISABLED)
my_label.grid(row=0, column=0, columnspan=3)
button_back.grid(row=1, column=0)
button_forward.grid(row=1, column=2)
button_back = Button(root, text="<<", command=back, state=DISABLED)
button_exit = Button(root, text="Exit Program", command=root.quit)
button_forward = Button(root, text=">>", command=lambda: forward(2))
button_back.grid(row=1, column=0)
button_exit.grid(row=1, column=1)
button_forward.grid(row=1, column=2)
root.mainloop()