Python PIL tobytes()方法

Python PIL tobytes()方法

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

Image.tobytes() 将图像作为一个字节对象返回。

语法: Image.tobytes(encoder_name=’raw’, *args)

参数:

encoder_name – 使用什么编码器。默认是使用标准的 “原始 “编码器。
args – 编码器的额外参数。

返回:一个字节对象。

使用的图片:
Python PIL tobytes()方法

# 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

另一个例子:这里使用相同的图像,将编码器的名称改为十六进制。

使用的图片:
Python PIL tobytes()方法

# 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程