这是我将tkinter的背景设置为图像的代码:
`C = Canvas(root, bg="blue", height=2560, width=1600)
filename = PhotoImage(file = "/Users/Angus/Desktop/GussyAIO/Background.png")
background_label = Label(root, image=filename)
background_label.place(x=0, y=0, relwidth=1, relheight=1)
C.pack()`
这会显示图像,但它似乎是放大或者某种东西,因为它没有显示整个图像。图像尺寸为2560x1600(与上面的画布尺寸相同)
感谢任何帮助:)