PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image
模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
Image.merge()
將一組單波段圖像合並為一個新的多波段圖像。
用法: PIL.Image.merge(mode, bands)
參數:
mode–用於輸出圖像的模式。請參閱:模式。
bands–在輸出圖像的每個波段中包含一個single-band圖像的序列。所有頻段必須具有相同的大小。
返回值:Image對象。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
image.load()
r, g, b, a = image.split()
# merge funstion used
im1 = Image.merge( 'RGB', (r, g, b))
im1.show()
輸出:
另一個示例:這裏使用了另一個圖像。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\python.png")
image.load()
r, g, b, a = image.split()[1]
# merge funstion used
im1 = Image.merge('RGB', (r, g, b))
im1.show()
輸出:
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python hasattr()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python PIL putalpha()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | Image.merge() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。