Python PIL | putalpha() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.putalpha()
添加或替换此图像中的 Alpha 层。如果图像没有 Alpha 层,则将其转换为“LA”或“RGBA”。新层必须是“L”或“1”。
Syntax: Image.putalpha(alpha)
Parameters:
alpha – The new alpha layer. This can either be an “L” or “1” image having the same size as this image, or an integer or other color value.
Returns: An Image object.
使用的图像:
# 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()
输出: