There is a code:
canvas = Canvas(root, width = 540, height = 540) canvas.place(x=0, y=0) img = ImageTk.PhotoImage(Image.open("C:\popka.jpg")) canvas.create_image(0,0, anchor=NW, image=img) Which makes the background image. It would be more convenient for me to directly indicate a link to a photo from a site, for example http://mypage.com/popka.jpg How to do this without crutches and as concisely as possible?