Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

ad background image with tkinter

app = Tk()
app.title("Welcome")
image2 =Image.open('C:UsersadminpDesktop	itlepagefront.gif')
image1 = ImageTk.PhotoImage(image2)
w = image1.width()
h = image1.height()
app.geometry('%dx%d+0+0' % (w,h))
#app.configure(background='C:Usfront.png')
#app.configure(background = image1)

labelText = StringVar()
labelText.set("Welcome !!!!")
#labelText.fontsize('10')

label1 = Label(app, image=image1, textvariable=labelText,
               font=("Times New Roman", 24),
               justify=CENTER, height=4, fg="blue")
label1.pack()

app.mainloop()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ad #background #image #tkinter
ADD COMMENT
Topic
Name
9+7 =