PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
PIL.Image.frombytes()
根据缓冲区中的像素数据创建图像存储器的副本。以最简单的形式,此函数采用三个参数(模式,大小和解压缩的像素数据)。
用法: PIL.Image.frombytes(mode, size, data, decoder_name=’raw’, *args)
参数:
mode-图像模式。请参阅:模式。
size-图像尺寸。
data-包含给定模式原始数据的字节缓冲区。
decoder_name-使用什么解码器。
args-给定解码器的其他参数。
返回:Image对象。
# importing image object from PIL
from PIL import Image
# using tobytes data as raw for frombyte function
tobytes = b'xd8\xe1\xb7\xeb\xa8\xe5 \xd2\xb7\xe1'
img = Image.frombytes("L", (3, 2), tobytes)
# creating list
img1 = list(img.getdata())
print(img1)
输出:
[120, 100, 56, 225, 183, 235]
另一个示例:在这里,我们使用不同的原始字节。
# importing image object from PIL
from PIL import Image
# using tobytes data as raw for frombyte function
tobytes = b'\xbf\x8cd\xba\x7f\xe0\xf0\xb8t\xfe'
img = Image.frombytes("L", (3, 2), tobytes)
# creating list
img1 = list(img.getdata())
print(img1)
输出:
[191, 140, 100, 186, 127, 224]
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.frombytes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。