Python PIL | tobytes() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.tobytes()
将图像作为字节对象返回
Syntax: Image.tobytes(encoder_name=’raw’, *args)
Parameters:
encoder_name – What encoder to use. The default is to use the standard “raw” encoder.
args – Extra arguments to the encoder.
Returns: A bytes object.
使用的图像:
# Importing Image module from PIL package
from PIL import Image
# creating a image object
img = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
# using tobytes
img.tobytes("xbm", "rgb")
print(img)
输出:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=259x194 at 0x2D39DED2BE0
另一个例子:这里使用相同的图像,将编码器名称更改为十六进制。
使用的图像:
# Importing Image module from PIL package
from PIL import Image
# creating a image object
img = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
# using tobytes
img.tobytes("hex", "rgb")
print(img)
输出:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=259x194 at 0x27845B91BE0