gpt4 book ai didi

python - python 图像错误

转载 作者:行者123 更新时间:2023-12-01 09:09:16 25 4
gpt4 key购买 nike

我是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

最佳答案

改变

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

进入

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

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

关于python - python 图像错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51802770/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com