-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimage_popup.py
65 lines (52 loc) · 1.44 KB
/
image_popup.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
import tkinter as tk
from PIL import ImageTk, Image
import time
import os
w = tk.Tk()
img_not_available = ImageTk.PhotoImage(Image.open(os.path.join('image','no_image_available.jpeg')))
img_ready = ImageTk.PhotoImage(Image.open(os.path.join('image','ready.png')))
#ready = True
def show_img(uin = None):
global w
global panel
w.title(str(uin))
try:
img = ImageTk.PhotoImage(Image.open(os.path.join('image',uin+'.jpeg')))
except FileNotFoundError:
#img = ImageTk.PhotoImage(Image.open(os.path.join('image','notfound.png')))
img = img_not_available
panel.image = img
width = img.width()
height = img.height()
x,y=0,0
w.geometry('{}x{}+{}+{}'.format(width,height,x,y))
panel.configure(image = img)
w.update_idletasks()
w.update()
time.sleep(1)
def ready():
global w
global panel
w.title('Ready')
#img = ImageTk.PhotoImage(Image.open(os.path.join('image','ready.png')))
img = img_ready
panel.image = img
width = img.width()
height = img.height()
x,y=0,0
w.geometry('{}x{}+{}+{}'.format(width,height,x,y))
panel.configure(image = img)
w.update_idletasks()
w.update()
def main():
global w
global panel
panel = tk.Label(w)
panel.pack(side = tk.TOP, fill = tk.BOTH, expand = tk.YES)
uin = "1";
while uin > "0":
ready()
uin = input('uin: ')
show_img(uin)
if __name__ == '__main__':
main()