from tkinter import * root = Tk() c = Canvas(root, width=200, height=150, bg='white') c.pack() c.create_text(100, 10, text="Нижче ліворуч -", justify=CENTER, font="Ubuntu,Calibri 12", fill="green") c.create_text(100, 30, text="вставлене зображення",justify=CENTER, font="Ubuntu,Calibri 12", fill="green") c.create_text(200,150, text="anchor=SE", anchor=SE, fill="grey") f = PhotoImage(file = "55.png") image = c.create_image(0, 150, anchor=SW, image=f) root.mainloop()