-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.py
28 lines (20 loc) · 924 Bytes
/
help.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
from tkinter import*
from PIL import Image,ImageTk
class Help:
def __init__(self,root):
self.root=root
self.root.geometry("1530x790+0+0")
self.root.title("face Recognition System")
title_lbl=Label(self.root,text="HELP DESK",font=("Algerian",30,"bold"),bg="light blue",fg="dark blue")
title_lbl.place(x=0,y=0,width=1530,height=45)
bg_img= Image.open(r"college_images\help.jpeg")
bg_img=bg_img.resize((1530,720),Image.ANTIALIAS)
self.photoimg_top=ImageTk.PhotoImage(bg_img)
f_lbl=Label(self.root,image=self.photoimg_top)
f_lbl.place(x=0,y=45,width=1530,height=720)
dev_lbl=Label(f_lbl,text="Email:[email protected]",font=("times new roman",20,"bold"),bg="black",fg="white")
dev_lbl.place(x=550,y=260)
if __name__=="__main__":
root=Tk()
obj=Help(root)
root.mainloop()