python png 背景透明_Python - 移除PNG透明图的alpha通道

在利用 Photoshop 等得到的 PNG 透明图中,一般都是包含 alpha channel 的.

下面的代码实现的功能:Remove PNG Transparency#!/usr/bin/python3

#!--*-- coding:utf-8 --*--

def remove_transparency(img_pil, bg_colour=(255, 255, 255)):

# Only process if image has transparency

if img_pil.mode in ('RGBA', 'LA') or \

(img_pil.mode == 'P' and 'transparency' in img_pil.info):

# Need to convert to RGBA if LA format due to a bug in PIL (http://stackoverflow.com/a/1963146)

alpha = img_pil.convert('RGBA').split()[-1]

# Create a new background image of our matt color.

# Must be RGBA because paste requires both images have the same format

# (http://stackoverflow.com/a/8720632 and http://stackoverflow.com/a/9459208)

bg = Image.new("RGBA", img_pil.size, bg_colour + (255,))

bg.paste(img_pil, mask=alpha)

return bg

else:

return img_pil

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值