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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。