1from tkinter import *
2from PIL import ImageTk, Image
3root=Tk()
4
5image = Image.open('path_to_your_image.png')
6# The (450, 350) is (height, width)
7image = image.resize((450, 350), Image.ANTIALIAS)
8my_img = ImageTk.PhotoImage(image)
9my_img = Label(image = my_img)
10my_img.pack()
11
12root.mainloop()