您的位置:首页技术文章
文章详情页

python 给图像添加透明度(alpha通道)

【字号: 日期:2022-07-30 14:58:33浏览:2作者:猪猪

我们常见的RGB图像通常只有R、G、B三个通道,在图像处理的过程中会遇到往往需要向图像中添加透明度信息,如公司logo的设计,其输出图像文件就需要添加透明度,即需要在RGB三个通道的基础上添加alpha通道信息。这里介绍两种常见的向RGB图像中添加透明度的方法。

1、使用图像合成(blending)的方法

可参考上篇博文(python图像处理(十)——两幅图像的合成一幅图像(blending two images) )

代码如下:

#-*- coding: UTF-8 -*- from PIL import Image def addTransparency(img, factor = 0.7 ): img = img.convert(’RGBA’) img_blender = Image.new(’RGBA’, img.size, (0,0,0,0)) img = Image.blend(img_blender, img, factor) return img img = Image.open( 'SMILEY.png ')img = addTransparency(img, factor =0.7)

这里给原图的所有像素都添加了一个常量(0.7)的透明度。

处理前后的效果如下:

python 给图像添加透明度(alpha通道)

2、使用Image对象的成员函数putalpha()直接添加

代码如下:

#-*- coding: UTF-8 -*- from PIL import Image img = Image.open('SMILEY.png ')img = img.convert(’RGBA’)r, g, b, alpha = img.split()alpha = alpha.point(lambda i: i>0 and 178)img.putalpha(alpha)

处理前后的效果如下:

python 给图像添加透明度(alpha通道)

到此这篇关于python 给图像添加透明度(alpha通道)的文章就介绍到这了,更多相关python 图像添加透明度内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!

标签: Python 编程
相关文章: