PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image
模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
Image.putalpha()
添加或替換此圖像中的Alpha層。如果圖片沒有Alpha圖層,則會將其轉換為“LA”或“RGBA”。新層必須是“L”或“1”。
用法: Image.putalpha(alpha)
參數:
alpha-新的Alpha層。它可以是具有與此圖像相同大小的“L”圖像或“1”圖像,或者是整數或其他顏色值。
返回:Image對象。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\lion.png")
# using putalpha method
im.putalpha(1)
# show image object
im.show()
輸出:
另一個示例:使用了另一個圖像。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\butter.png")
# using putalpha method
im.putalpha(1)
# show image object
im.show()
輸出:
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python sys.getrecursionlimit()用法及代碼示例
- Python PIL eval()用法及代碼示例
- Python os.WIFEXITED()用法及代碼示例
- Python os.scandir()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python sympy.rf()用法及代碼示例
- Python sympy.ff()用法及代碼示例
- Python getattr()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python sympy.nT()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | putalpha() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。