1

我想要做的是打开一个带有两个图像的窗口(一个图像是另一个图像的精确副本)。然后,当我单击一个按钮时,它会更改右侧的图像。我希望这是有道理的。我没有的代码是:

from __future__ import division
from Tkinter import *
from PIL import Image, ImageTk, ImageFilter
import random

class MyApp(object):
    def __init__(self):
        self.root = Tk()
        self.root.wm_title("Image examples")

        img = Image.open("lineage.jpg").convert("RGB")
        (w, h) = (img.size[0], img.size[1])
        print (w, h)

        tkpi = ImageTk.PhotoImage(img)
        label = Label(self.root, image=tkpi)
        label.grid(row=0, column=0, padx=5, pady=5, rowspan=10)

        img2 = img.copy()
        pixels = img2.load()

        tkpi2 = ImageTk.PhotoImage(img2)
        label = Label(self.root, image=tkpi2)
        label.grid(row=0, column=1, padx=5, pady=5, rowspan=10)

        Button(self.root, text="Brighten", command=self.brighten).grid(row=0, column= 2)  
        self.root.mainloop()

    def brighten(self):
        self.pixels = self.pixels.point(lambda x: x*1.9)          
MyApp()

我想要的是img2在单击brighten按钮时进行更新。当我现在尝试时,我收到此错误:

File "C:\Users\Admin\Desktop\imageeditor.py", line 36, in brighten
self.pixels = self.pixels.point(lambda x: x*1.9)
AttributeError: 'MyApp' object has no attribute 'pixels'

正如你所知道的,我是编程新手,所以任何能帮助我走上正轨的帮助都会很棒。

4

2 回答 2

2

下面是一个完整的解决方案。以下是对所做更改的一些评论:

  • 以前该__init__方法从未返回,因为它最后调用 self.root.mainloop() 。这可能会导致一些问题。我对其进行了重组,使其更像 python 文档中的 hello world 示例。
  • 有一个很棒的变暗/变亮示例,该示例就是围绕该brighten()方法建模的。
  • 有一个from Tkinter import *,这个被替换了from Tkinter import Frame, Tk, Label, Button。事实证明,PIL 和 Tkinter 都有一个名为的属性Image,使用起来真的很混乱。尽量避免使用,from module import *而是在您要导入的内容中明确说明,这将防止名称空间冲突。

代码

from Tkinter import Frame, Tk, Label, Button
from PIL import Image, ImageTk, ImageFilter

class Application(Frame):
    def __init__(self, master=None):
        Frame.__init__(self, master)
        master.wm_title("Image examples")
        self.pack()
        self.createWidgets()

    def createWidgets(self):
        self.img = Image.open("lineage.jpg")
        self.photo1 = ImageTk.PhotoImage(self.img.convert("RGB"))
        self.label1 = Label(self, image=self.photo1)
        self.label1.grid(row=0, column=0)

        self.photo2 = ImageTk.PhotoImage(self.img.convert("RGB"))
        self.label2 = Label(self, image=self.photo2)
        self.label2.grid(row=0, column=1)

        button = Button(self, text="Brighten", command=self.brighten)
        button.grid(row=0, column=2)

    def brighten(self):
        img2 = self.img.point(lambda p: p * 1.9)
        self.photo2 = ImageTk.PhotoImage(img2)
        self.label2 = Label(self, image=self.photo2)
        self.label2.grid(row=0, column=1)

root = Tk()
app = Application(master=root)
app.mainloop()
root.destroy()
于 2012-11-10T17:29:59.087 回答
2

我有一个工作的。

from __future__ import division
from Tkinter import *
from PIL import Image, ImageTk, ImageFilter
import random

class MyApp(object):
    def __init__(self):
        self.root = Tk()
        self.root.wm_title("Image examples")

        img = Image.open("lineage.jpg").convert("RGB")
        (self.w, self.h) = (img.size[0], img.size[1])

        self.tkpi = ImageTk.PhotoImage(img)
        self.label = Label(self.root, image=self.tkpi)
        self.label.grid(row=0, column=0, padx=5, pady=5, rowspan=10)

        self.img2 = img.copy()
        self.pixels = self.img2.load()
        self.width, self.height = self.img2.size



        self.tkpi2 = ImageTk.PhotoImage(self.img2)
        self.label2 = Label(self.root, image=self.tkpi2)
        self.label2.grid(row=0, column=1, padx=5, pady=5, rowspan=10)

        self.btn = Button(self.root, text="Brighten")
        self.btn.grid(row=0, column= 2)
        self.btn.bind('<Button-1>', self.brighten)
        self.root.mainloop()

    def brighten(self,*args):
#        self.pixels = self.pixels.point(lambda x: x*1.9)
        for i in range(self.w):    # for every pixel:
            for j in range(self.h):
#                print self.pixels[i,j]
                self.pixels[i,j] = (int(self.pixels[i,j][0] * 1.9),
                                    int(self.pixels[i,j][1] * 1.9),
                                    int(self.pixels[i,j][2] * 1.9))
        self.tkpi2 = ImageTk.PhotoImage(self.img2)
        self.label2.configure(image = self.tkpi2)
        self.root.update_idletasks()
MyApp()
于 2012-11-10T18:16:12.600 回答