from Tkinter import * from PIL import Image, ImageTk root = Tk() image = Image.open("E:\\python\\Image&File Upload\\Koala.jpg") photo = ImageTk.PhotoImage(image) Label(root, image=photo, height=300, width=300).pack() Label(root, text="Venus Transit").pack() root.mainloop()