1 回答

TA貢獻(xiàn)2011條經(jīng)驗(yàn) 獲得超2個(gè)贊
問題是需要一個(gè) PhotoImage 實(shí)例image的選項(xiàng)Map.create_image(updatex, y, image = self.image),但你給它一個(gè)標(biāo)簽,所以要修復(fù)它只需說。
class Player:
def __init__(self, hp, image):
self.hp = hp
self.image = image #creating an instance variable
self.pic = ImageTk.PhotoImage(self.image) #making an photoimage instance
self.cv = Map.create_image(updatex, y, image = self.pic) #passing the photo image instance
self.pic.image = self.pic #keeping a reference to the image
希望這已經(jīng)解決了錯(cuò)誤,如果有任何錯(cuò)誤或疑問,請告訴我。
添加回答
舉報(bào)