import tkinter as tk window = tk() canvas = Canvas(window, width=300, height=300) image = PhotoImage('path') canvas.create_image(height=40, width=40, img=image)