PySimpleGUI - 使用 PIL

Python Imaging Library 是 Python 编程语言的免费、跨平台和开源库,具有打开、操作和保存多种不同图像文件格式的功能。

要安装它,使用PIP命令如下 −

pip3 install pillow

在下面的示例中,我们使用 PIL 函数获取 PNG 图像的字节值,并将其显示在 PySimpleGUI 窗口的 Image 元素中。

import PySimpleGUI as sg
import PIL.Image
import io
import base64
def convert_to_bytes(file_or_bytes, resize=None):
   img = PIL.Image.open(file_or_bytes)
   with io.BytesIO() as bio:
      img.save(bio, format="PNG")
      del img
      return bio.getvalue()

imgdata = convert_to_bytes("PySimpleGUI_logo.png")
layout = [[sg.Image(key='-IMAGE-', data=imgdata)]]
window = sg.Window('PIL based Image Viewer', layout,resizable=True)
while True:
   event, values = window.read()
   if event == sg.WIN_CLOSED:
      break
window.close()

它将产生以下输出窗口 −

使用 PIL