PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.sHOW()
显示此图像。此方法主要用于调试目的。
在Unix平台上,此方法将映像保存到临时PPM文件,然后调用xv实用程序。在Windows上,它将图像保存到一个临时的BMP文件中,并使用标准的BMP显示实用程序来显示它(通常是Paint)。
用法: Image.show(title=None, command=None)
参数:
title-可能的话,用于图像窗口的可选标题。
command-用于显示图像的命令
返回类型=分配的路径图像将打开。
使用的图片:
# 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()
输出:
另一个示例:使用show()using .jpg扩展名打开图像。
使用的图片:
# 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 next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.show() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。