import tkinter as tk
my_w=tk.Tk()
my_w.geometry('300x100')
my_w.title('www.plus2net.com')
my_w.mainloop()
Tkinter displaying icon or JPG PNG image in windows by using Label or button using PILLOW library
Escape the path by using two backslashes if you have any char with can be used with backslash. Here \f can be understood as form feed, so we used two backslashes.
import tkinter as tk
my_w=tk.Tk()
my_w.geometry('300x100')
my_w.title('www.plus2net.com')
my_w.iconbitmap('D:\\images\\favicon.ico')
my_w.mainloop()
If PIL ( Python Image Library ) is not installed then use PIP to install it. You can check the status by using this command and check all installed libraries.
%pip freeze
Here is the code to display Jpg image over a button.
import tkinter as tk
my_w=tk.Tk()
from PIL import Image,ImageTk
my_w.geometry('300x100')
my_w.title('www.plus2net.com')
my_img = ImageTk.PhotoImage(Image.open("D:/images/top2.jpg"))
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1)
my_w.mainloop()
Background Image of the window
Change the path of the image used at my_img2.
To use JPG image we have to include PIL library.
import tkinter as tk
my_w = tk.Tk()
my_w.geometry("840x570")
my_img = tk.PhotoImage(file = "H:\\top2.png")
print(my_img.width(),my_img.height()) # Width and height of the image
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1)
my_w.mainloop()
import tkinter as tk
my_w=tk.Tk()
from PIL import Image,ImageTk
my_w.geometry('400x300')
my_w.title('www.plus2net.com')
my_img = ImageTk.PhotoImage(Image.open("H:/top2.jpg"))
print(my_img.width(),my_img.height()) # Print width and height of the image
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1,padx=20,pady=20)
my_w.mainloop()
import tkinter as tk
my_w=tk.Tk()
from PIL import Image,ImageTk
my_w.geometry('400x300')
my_w.title('www.plus2net.com')
my_img = Image.open("H:/top2.jpg") # change the path of your image
print(my_img.size) # Print the tuple with width and height of the image
print('Width: ',my_img.size[0],' , Height: ',my_img.size[1])
my_img = ImageTk.PhotoImage(Image.open("H:/top2.jpg"))
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1,padx=20,pady=20)
my_w.mainloop()
import tkinter as tk
from PIL import Image,ImageTk
#create the image
img = Image.new( 'RGB', (255,255), "black") # Create a new black image
pixels = img.load() # Create the pixel map
for i in range(img.size[0]): # For every pixel:
for j in range(img.size[1]):
pixels[i,j] = (i, j, 100) # Set the colour accordingly
#img.show() # to display without Tkinter
my_w=tk.Tk()
my_w.geometry('300x300')
my_w.title('www.plus2net.com')
my_img = ImageTk.PhotoImage(img)
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1,padx=20,pady=20)
my_w.mainloop()
Bitmap Image displaying
from PIL import Image
import tkinter as tk
from PIL import Image,ImageTk
# Create a new bitmap image.
img= Image.new("1", (200, 200))
# Get the image data.
pixels = img.load() # Create the pixel map
# Set the pixel values.
for i in range(img.size[0]): # For every pixel:
for j in range(img.size[1]):
pixels[i,j] = 0 if (i + j) % 5 == 0 else 255 # Set the colour accordingly
#image.save("E:\\bitmap_image.bmp")
my_w=tk.Tk()
my_w.geometry('300x300')
my_w.title('www.plus2net.com')
my_img = ImageTk.PhotoImage(img)
b1=tk.Button(my_w,image=my_img)
b1.grid(row=1,column=1,padx=20,pady=20)
my_w.mainloop()