1. import tkinter 2. define root window 3. identify your image 4. define canvas5. pack the canvas 6. add the image7. start the tkinter mainloop:8. All code: import tkinter as tk root = tk.Tk() img = tk.PhotoImage(file="AAPL.PNG") canvas = tk.Canvas(root, width = 1000, height = 1000) canvas.pack() canvas.create_image((500,500), image=img, anchor=tk.CENTER) root.mainloop()