Python PIL Image.show()方法

Python PIL Image.show()方法

PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。
Image.show() 显示此图像。这个方法主要是为了调试的目的。
在Unix平台上,该方法将图像保存到一个临时的PPM文件,并调用xv工具。在Windows上,它将图像保存到一个临时的BMP文件,并使用标准的BMP显示工具来显示它(通常是Paint)。

语法: Image.show(title=None, command=None)
参数:
title – 在可能的情况下,为图像窗口使用的可选标题。
command – 用于显示图像的命令。
返回类型=指定的路径图像将打开。

使用的图片:

Python PIL Image.show()方法

# importing Image class from PIL package
from PIL import Image
 
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
 
im.show()

输出:

Python PIL Image.show()方法

另一个例子:用show()打开图片,使用.jpg扩展名。
使用的图片:

Python PIL Image.show()方法

# importing Image class from PIL package
from PIL import Image
 
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
 
im.show()

输出:

Python PIL Image.show()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程