如何使用Python使背景图像透明?
在本文中,任务是在Python中创建图像的背景透明
图书馆要求:
在继续之前,首先在你的Python应用程序上安装枕头库。 Python Imaging Library 是Python编程语言的免费开源附加库,增加了对打开、操作和保存多种图像文件格式的支持。这个提到的程序需要枕头库。您可以使用代码在Python中安装枕头库
pip install pillow
方法 :
- 阅读图像。
- 将图像转换为 RGBA 格式。
- 将图像的白色像素变为透明形式
- 保存新编辑的图像
例子 :
Python3
from PIL import Image
def convertImage():
img = Image.open("./image.png")
img = img.convert("RGBA")
datas = img.getdata()
newData = []
for items in datas:
if item[0] == 255 and item[1] == 255 and item[2] == 255:
newData.append((255, 255, 255, 0))
else:
newData.append(item)
img.putdata(newData)
img.save("./New.png", "PNG")
print("Successful")
convertImage()
输出: