📜  Python PIL |图像.getdata()

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

Python PIL |图像.getdata()

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

getdata()将此图像的内容作为包含像素值的序列对象返回。序列对象被展平,因此第 1 行的值直接跟在第 0 行的值之后,依此类推。

注意,该方法返回的序列对象是内部PIL数据类型,只支持某些序列操作。要将其转换为普通序列(例如用于打印),请使用 list(im.getdata())。

使用的图像:

# importing Image module from PIL package 
from PIL import Image 
   
# opening a  image 
im = Image.open(r"C:\Users\System-Pc\Desktop\lion.png").convert("L") 
   
# getting colors 
# multiband images (RBG) 
im1 = Image.Image.getdata(im) 
   
print(im1) 

输出:

ImagingCore object at 0x0000026E11CD52D0

另一个例子:这里我们改变图像。
使用的图像

# importing Image module from PIL package 
from PIL import Image 
   
# opening a  image 
im = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg").convert("L") 
   
# getting colors 
# multiband images (RBG) 
im1 = Image.Image.getdata(im) 
   
print(im1) 

输出:

ImagingCore object at 0x0000029BA596C230