98

我正在使用 PIL 库进行一些图像编辑。关键是,我不想每次都将图像保存在我的硬盘上以在资源管理器中查看它。是否有一个小模块可以让我简单地设置一个窗口并显示图像?

4

8 回答 8

139

PIL 教程的开头:

一旦有了Image类的实例,就可以使用该类定义的方法来处理和操作图像。例如,让我们显示我们刚刚加载的图像:

     >>> im.show()

更新:

如今,该Image.show()方法已正式记录PIL 的 Pillow fork 中,并解释了它是如何在不同的操作系统上实现的。

于 2012-09-24T19:15:29.440 回答
26

我对此进行了测试,对我来说效果很好:

from PIL import Image
im = Image.open('image.jpg')
im.show()
于 2019-03-14T17:37:48.103 回答
10

如果您发现 PIL 在某些平台上存在问题,使用本机图像查看器可能会有所帮助。

img.save("tmp.png") #Save the image to a PNG file called tmp.png.

对于 MacOS:

import os
os.system("open tmp.png") #Will open in Preview.

对于大多数带有 X.Org 和桌面环境的 GNU/Linux 系统:

import os
os.system("xdg-open tmp.png")

对于 Windows:

import os
os.system("powershell -c tmp.png")
于 2017-04-09T03:58:47.217 回答
6

也许您可以为此使用 matplotlib,也可以使用它绘制普通图像。如果您调用 show(),图像会在窗口中弹出。看看这个:

http://matplotlib.org/users/image_tutorial.html

于 2012-09-24T18:43:48.760 回答
4

您可以使用 Tkinter 在自己的窗口中显示图像,不依赖于系统中安装的图像查看器:

import Tkinter as tk
from PIL import Image, ImageTk  # Place this at the end (to avoid any conflicts/errors)

window = tk.Tk()
#window.geometry("500x500") # (optional)    
imagefile = {path_to_your_image_file}
img = ImageTk.PhotoImage(Image.open(imagefile))
lbl = tk.Label(window, image = img).pack()
window.mainloop()

对于 Python 3,替换import Tkinter as tkimport tkinter as tk.

于 2018-04-14T16:20:09.587 回答
2

您可以使用 pyplot 显示图像:

from PIL import Image
import matplotlib.pyplot as plt
im = Image.open('image.jpg')
plt.imshow(im)
于 2021-05-01T12:50:40.870 回答
1

是的,PIL.Image.Image.show()简单方便。

但是如果你想把图像放在一起,做一些比较,那么我建议你使用matplotlib。下面是一个例子,

import PIL
import PIL.IcoImagePlugin
import PIL.Image
import matplotlib.pyplot as plt

with PIL.Image.open("favicon.ico") as pil_img:
    pil_img: PIL.IcoImagePlugin.IcoImageFile  # You can omit. It helps IDE know what the object is, and then it will hint at the method very correctly.
    out_img = pil_img.resize((48, 48), PIL.Image.ANTIALIAS)

    plt.figure(figsize=(2, 1))  # 2 row and 1 column.
    plt.subplots_adjust(hspace=1)  # or you can try: plt.tight_layout()
    plt.rc(('xtick', 'ytick'), color=(1, 1, 1, 0))  # set xtick, ytick to transparent
    plt.subplot(2, 1, 1), plt.imshow(pil_img)
    plt.subplot(2, 1, 2), plt.imshow(out_img)
    plt.show()

在此处输入图像描述

于 2021-07-12T09:11:25.820 回答
0

这对我有用:

roses = list(data_dir.glob('roses/*'))
abc = PIL.Image.open(str(roses[0]))
PIL.Image._show(abc)
于 2021-09-16T11:49:04.437 回答