Python Zelle 图形 - 图片错误
Python Zelle graphics - image error
使用 mac,我试图将我的程序背景设置为我下载的图像,我将图像命名为 "ChristmasBackground.jpg" 并将其保存到我的文档中。使用Zelle图形,这是我写的:
XmasBack = Image(Point(600,100),"ChristmasBackground.jpg")
XmasBack.draw(win)
但是程序给我一个错误提示:
couldn't open "ChristmasBackground.jpg": no such file or directory
放在你脚本的同一个文件夹下或者写文件路径就可以了
使用 mac,我试图将我的程序背景设置为我下载的图像,我将图像命名为 "ChristmasBackground.jpg" 并将其保存到我的文档中。使用Zelle图形,这是我写的:
XmasBack = Image(Point(600,100),"ChristmasBackground.jpg")
XmasBack.draw(win)
但是程序给我一个错误提示:
couldn't open "ChristmasBackground.jpg": no such file or directory
放在你脚本的同一个文件夹下或者写文件路径就可以了