如何使用PIL在python 3中保存图像?

时间:2016-03-25 21:51:28

标签: python-3.x python-imaging-library

我在一个重新着色图像的程序中使用python 3中的PIL。它的作用是,它永久地循环遍历file.gif的像素值(以整数形式返回),然后为每个像素值添加10。然后我想要它保存文件,然后可以重新打开以写入tkinter标签(我已经完成了其余的工作,但我只需要知道保存)。

使用此代码,我有程序打开图像并在窗口中显示,然后修改像素值,但它不会改变显示的图像。

from tkinter import *
from PIL import Image
from PIL import Image, ImageTk
import time, sys

def col():
    global count1,count,pix,x,root
    count1+=1
    print("("+str(count1)+")")
    count=-1
    for i in pix:
        count+=1
        #print(i)
        i+=10
        pix[count]=i

    photo = PhotoImage(file="AI.gif")
    x.configure(image=photo)
    root.update()
    root.after(100, col)

root=Tk()

photo = PhotoImage(file="AI.gif")
x=Label(root, compound="top", image=photo)
x.pack(side="right")

img = Image.open("AI.gif")
pix=list(img.getdata())
width=img.size[0]
height=img.size[1]
img.close()

root.geometry((str(width)+"x"+str(height))+"-0+0")
root.update()

count1=0
col()

root.mainloop()

我目前正在使用此图片: here

修改 @Tadhg McDonald-Jensen 我刚刚运行了所有建议的编辑程序,但是出现了这个错误:

Traceback (most recent call last):
  File "C:\Users\name\Desktop\recolour1.py", line 47, in <module>
    col()
  File "C:\Users\name\Desktop\recolour1.py", line 19, in col
    photo.paste(img)
AttributeError: 'PhotoImage' object has no attribute 'paste'

EDIT2: 这是我最新版本的代码,它似乎没有在tkinter窗口中修改图像:

from tkinter import *
from PIL import Image
from PIL import Image, ImageTk
import time, sys

def col():
    global count1,count,pix,x,root,photo
    img = Image.open("AI.gif").convert("RGB")
    pix=list(img.getdata())
    count1+=1
    print("("+str(count1)+")")
    count=-1
    for i in pix:
        count+=1
        #print(i)
        i = tuple(V+100 for V in i)

    img.putdata(pix)
    photo.paste(img)
    root.update()
    img.close()
    root.after(10, col)

root=Tk()
photo = ImageTk.PhotoImage(file="AI.gif")
x=Label(root, compound="top", image=photo)
x.pack(side="right")
img = Image.open("AI.gif").convert("RGB")
width,height=img.size[0],img.size[1]
img.close()
root.geometry((str(width)+"x"+str(height))+"-0+0")
root.update()
count1=0
col()
root.mainloop()

1 个答案:

答案 0 :(得分:2)

每次你这样做:

PhotoImage(file="AI.gif")

您正在再次加载文件,请注意该文件在此过程中永远不会更改,因此图像永远不会更改。如果您已使用PIL加载图像,则可以使用ImageTk.PhotoImage从图像加载数据:

photo = ImageTk.PhotoImage(img)

(确保在定义img后执行此操作) 然后你永远不需要用这个重新打开图像:

photo = PhotoImage(file="AI.gif")
x.configure(image=photo)

相反,您只需将新的像素数据放入img,然后使用photo中的新数据更新img

img.putdata(pix)
photo.paste(img)

编辑:这里只是澄清您的代码以及我建议的所有修改:

from tkinter import *
from PIL import Image
from PIL import Image, ImageTk
import time, sys


def col():
    global count1,count,pix,x,root,img
    count1+=1
    print("("+str(count1)+")")
    count=-1
    for i in pix:
        count+=1
        #print(i)
        i+=10
        pix[count]=i

    #update the data in img and then paste it into photo
    img.putdata(pix)
    photo.paste(img)
    root.update()
    root.after(100, col)

root=Tk()

#load the image before making PhotoImage
img = Image.open("AI.gif")
pix=list(img.getdata())
width=img.size[0]
height=img.size[1]
#img.close() #don't close the image as you won't be able to modify it after closing

# do this part after defining img
photo = ImageTk.PhotoImage(img)
        # ^ use PIL's PhotoImage to use PIL operations on it
x=Label(root, compound="top", image=photo)
x.pack(side="right")

root.geometry((str(width)+"x"+str(height))+"-0+0")
root.update()

count1=0
col()

root.mainloop()