当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL tobytes()用法及代码示例


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

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

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

参数:

encoder_name-使用什么编码器。默认值为使用标准“raw”编码器。
args-编码器的额外参数。

返回值:一个字节对象。

使用的图片:

   
  
# 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


相关用法


注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | tobytes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。