PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
putdata()
将像素数据复制到该图像。此方法将数据从序列对象复制到图像中,从左上角(0,0)开始,一直进行到图像或序列结束为止。标度和偏移值用于调整序列值:像素=值*标度+偏移。
用法: Image.putdata(data, scale=1.0, offset=0.0)
参数:
data-序列对象。
scale-可选的比例值。默认值为1.0。
offset-可选的偏移值。默认值为0.0。
返回:一个图像
# from pure python list data
from PIL import Image
img = Image.new("L", (104, 104)) # single band
newdata = list(range(0, 256, 4)) * 104
img.putdata(newdata)
img.show()
输出:
另一个示例:此处更改参数。
# from pure python list data
from PIL import Image
img = Image.new("L", (224, 224))
newdata = list(range(0, 256, 4)) * 224
img.putdata(newdata)
img.show()
输出:
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python PIL eval()用法及代码示例
- Python sys.getrecursionlimit()用法及代码示例
- Python sympy.rf()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python os.WIFEXITED()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python os.sync()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python Decimal max()用法及代码示例
- Python os.fdatasync()用法及代码示例
- Python Decimal min()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | putdata() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。