You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msg.showinfo("Have a Good Day!",pyjokes.get_joke(language='en'))
40
+
41
+
defmain(self):
42
+
self._root.geometry("1200x680")
43
+
self._root.resizable(False,False)
44
+
self._root.title("Multi-Convertor-Saviour")
45
+
46
+
img=Image.open("images/home_page.jpeg")
47
+
img=img.convert("RGBA")
48
+
img=img.resize((590,680), Image.ANTIALIAS)
49
+
bg=ImageTk.PhotoImage(img)
50
+
51
+
canvas=Canvas(self._root,bg="skyblue")
52
+
canvas.pack(expand=True, fill="both")
53
+
canvas.create_image(0,0,image=bg, anchor="nw")
54
+
55
+
frame=LabelFrame(text="CHOOSE YOUR CHOICE",font=("sans",15,"bold"),bg="aqua",fg="black",bd=5)
56
+
frame.place(x=625,y=140,width=545,height=460)
57
+
58
+
welcome=Label(self._root,text=" WELCOME USER \n Help Yourself",font=("arial",24,"bold"),fg="black").place(x=155,y=10)
59
+
60
+
about=Label(self._root,text="About this Project",font=("arial",20,"bold"),bg="black",fg="white").place(x=780,y=15)
61
+
62
+
about_text=Label(self._root,text="One local platform to satisfy multiple remote deeds.",font=("arial",16,"bold"),fg="black",bg="white").place(x=630,y=70)
btn6=Button(frame,text="Logo on Image",command=self.add_logo,bd=5,bg="blue",fg="white",font=("arial",12,"bold")).place(x=360,y=140,width=150,height=50)
0 commit comments