19

所以我有一个任务,我必须使用 Tkinter 来创建一个棋盘游戏。这只是我想要引入电路板图像的程序的一部分。但我不断收到错误消息,“创建图像太早”,我不确定自己做错了什么。

到目前为止,这是我的代码:

from Tkinter import *
from pprint import pprint

# Which variable is currently updating
from variableColors import Variables
VariableIndex = 0               
VariableText = Variables[VariableIndex]

Ids = None             # Current canvas ids of the text and 4 player tokens:
                       # Will be None if not committed

VariableCoords = { }       # Where store variable and coordinates


im = PhotoImage(file="C:\Users\Kiki\Desktop\Assignment\\")
photo = can.create_image(0,0,anchor=NW, image=im)

can.pack()


root.mainloop()

任何帮助,将不胜感激。谢谢 :)

4

1 回答 1

25

您忘记声明 root - root = Tk()。Tk 系统在使用前必须打开。

于 2012-04-19T21:16:57.203 回答