我可以使用PIL以全屏模式显示图像吗?

时间:2017-11-15 20:01:38

标签: python windows python-imaging-library fullscreen pillow

如何使用Python Imaging Library全屏显示图像?

from PIL import Image

img1 = Image.open ('colagem3.png');
img1.show ();

在全屏模式下显示!

1 个答案:

答案 0 :(得分:6)

问题的核心

PIL无法以全屏方式打开图像。它是不可能的。 PIL的作用是简单地在默认的.bmp文件查看程序中打开您的文件(通常,Windows上的Windows照片[尽管这取决于Windows版本])。为了让它以全屏方式打开该程序,PIL需要知道发送程序的参数。没有标准语法。因此,这是不可能的。

但是,这并不意味着没有全屏打开图像的解决方案。通过在Python,Tkinter中使用本机库,我们可以创建自己的窗口,以全屏显示,显示图像。

兼容性

为了避免系统依赖(直接调用.dll和.exe文件)。这可以通过Tkinter完成。 Tkinter是一个显示库。此代码可以在运行Python 2或3的任何计算机上完美运行。

我们的功能

import sys
if sys.version_info[0] == 2:  # the tkinter library changed it's name from Python 2 to 3.
    import Tkinter
    tkinter = Tkinter #I decided to use a library reference to avoid potential naming conflicts with people's programs.
else:
    import tkinter
from PIL import Image, ImageTk

def showPIL(pilImage):
    root = tkinter.Tk()
    w, h = root.winfo_screenwidth(), root.winfo_screenheight()
    root.overrideredirect(1)
    root.geometry("%dx%d+0+0" % (w, h))
    root.focus_set()    
    root.bind("<Escape>", lambda e: (e.widget.withdraw(), e.widget.quit()))
    canvas = tkinter.Canvas(root,width=w,height=h)
    canvas.pack()
    canvas.configure(background='black')
    imgWidth, imgHeight = pilImage.size
    if imgWidth > w or imgHeight > h:
        ratio = min(w/imgWidth, h/imgHeight)
        imgWidth = int(imgWidth*ratio)
        imgHeight = int(imgHeight*ratio)
        pilImage = pilImage.resize((imgWidth,imgHeight), Image.ANTIALIAS)
    image = ImageTk.PhotoImage(pilImage)
    imagesprite = canvas.create_image(w/2,h/2,image=image)
    root.mainloop()

用法

pilImage = Image.open("colagem3.png")
showPIL(pilImage)

输出

它会创建一个全屏窗口,图像以黑色画布为中心。如果需要,您的图像将调整大小。这是它的视觉效果:

enter image description here

注意:使用escape关闭全屏