0

我正在尝试为我的图像编辑程序实现撤消功能。以下是我的部分代码:

def displayim(root, panel, img, editmenu):
    global image, L
    L.append(img)
    print(len(L))
    if (len(L) > 1):
        editmenu.entryconfig(0, state=NORMAL)
    else:
        editmenu.entryconfig(0, state=DISABLED)    
    image1 = ImageTk.PhotoImage(img)
    root.geometry("%dx%d+%d+%d" % (img.size[0], img.size[1], 200, 200))
    panel.configure(image = image1)
    panel.pack(side='top', fill='both', expand='yes')
    panel.image = image1
    image = img

def undo(root, panel, editmenu):
    global L
    i = len(L)
    del L[i-1]
    last = L.pop
    displayim(root, panel, last, editmenu)

我的想法是,当调用任何打开图像或为图像添加效果的函数时,它将通过调用显示结果displayim。该参数editmenu确保如果没有要撤消的内容,则该undo命令将被禁用。变量L是一个列表,用于存储每个函数调用后图像的状态。调用该undo函数时,它将删除列表中的最后一项以及最后一项之前的一项(现在成为最后一项),并将这个新的最后一项传递给,displayim以便程序可以显示图像的先前状态和再次将其添加到列表中。

但是,当我尝试使用该undo功能时,出现错误:

Exception in Tkinter callback
Traceback (most recent call last):
  File "D:\Python32\lib\tkinter\__init__.py", line 1399, in __call__
    return self.func(*args)
  File "D:\Users\ichigo\workspace\SS2\test\main.py", line 26, in <lambda>
    editmenu.add_command(label="Undo", command=lambda:file.undo(root, panel, editmenu), state=DISABLED)
  File "D:\Users\ichigo\workspace\SS2\test\file.py", line 51, in undo
    displayim(root, panel, last, editmenu)
  File "D:\Users\ichigo\workspace\SS2\test\file.py", line 39, in displayim
    image1 = ImageTk.PhotoImage(img)
  File "D:\Python32\lib\site-packages\PIL\ImageTk.py", line 110, in __init__
    mode = Image.getmodebase(mode)
  File "D:\Python32\lib\site-packages\PIL\Image.py", line 225, in getmodebase
    return ImageMode.getmode(mode).basemode
  File "D:\Python32\lib\site-packages\PIL\ImageMode.py", line 50, in getmode
    return _modes[mode]
TypeError: unhashable type: 'list'
Exception AttributeError: "'PhotoImage' object has no attribute '_PhotoImage__photo'" in <bound method PhotoImage.__del__ of <PIL.ImageTk.PhotoImage object at 0x01B1AA50>> ignored 

last我猜这个错误意味着我传递给displayimfrom的变量undo不是 PIL 图像对象,所以它不能被添加到PhotoImage. 现在有什么适合我的解决方案吗?如果您有任何建议,请告诉我。

4

1 回答 1

4

你应该last = L.pop改为last = L.pop()

L.pop返回一个<build-in method pop of list object>但不是一个PIL image object

于 2012-06-05T02:17:01.837 回答