python图像错误

时间:2018-08-11 18:52:40

标签: python python-3.x tkinter

我是python的新手。因此,我尝试在tkinter项目中显示图像。但是我不断收到这个错误。我在Google中搜索了很多代码,但一切都超出了我的范围。

###################################################
from tkinter import *

##################################################
StartScreen = Tk()
##Photo Car##
PhotoCarRed = PhotoImage(file="D:\Projects\Python\Practice\1.png")
PlacementPhotoCarRed = Label(StartScreen, image=PhotoCarRed)
PlacementPhotoCarRed.pack(side="top", fill=X)

这是错误:

enter image description here

1 个答案:

答案 0 :(得分:1)

更改

"D:\Projects\Python\Practice\1.png"

进入

"D:\\Projects\\Python\\Practice\\1.png"

单个反斜杠\用作转义符。因此,您可以在错误中看到程序将您的路径读取为"D:\Projects\Python\Practice .png",这是错误的。