📜  Python PIL | Image.open() 方法

📅  最后修改于: 2022-05-13 01:55:42.728000             🧑  作者: Mango

Python PIL | Image.open() 方法

PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。

PIL.Image.open()打开并识别给定的图像文件。

这是一个惰性操作;此函数识别文件,但文件保持打开状态,并且在您尝试处理数据(或调用 load() 方法)之前不会从文件中读取实际图像数据。见新()。

使用的图像:

# 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 扩展图像打开。