Python PIL | Image.open() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
PIL.Image.open()
打开并识别给定的图像文件。
这是一个惰性操作;此函数识别文件,但文件保持打开状态,并且在您尝试处理数据(或调用 load() 方法)之前不会从文件中读取实际图像数据。见新()。
Syntax: PIL.Image.open(fp, mode=’r’)
Parameters:
fp – A filename (string), pathlib.Path object or a file object. The file object must implement read(), seek(), and tell() methods, and be opened in binary mode.
mode – The mode. If given, this argument must be “r”.
Returns type: An image object.
Raises: IOError – If the file cannot be found, or the image cannot be opened and identified.
使用的图像:
# Imports PIL module
from PIL import Image
# open method used to open different extension image file
im = Image.open(r"C:\Users\System-Pc\Desktop\ybear.jpg")
# This method will show image in any image viewer
im.show()
输出: .JPG 扩展图像打开。
另一个例子:这里我们使用 .PNG 扩展文件。
使用的图像:
# Imports PIL module
from PIL import Image
# open method used to open different extension image file
im = Image.open(r"C:\Users\System-Pc\Desktop\lion.png")
# This method will show image in any image viewer
im.show()
输出: .PNG 扩展图像打开。