没有显示完整图像的Python Tkinter背景图像

时间:2018-06-05 11:27:05

标签: python python-3.x user-interface tkinter scripting

这是我将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(与上面的画布尺寸相同)

感谢任何帮助:)

0 个答案:

没有答案