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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。