alpha channel
Posted ax204
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了alpha channel相关的知识,希望对你有一定的参考价值。
from PIL import Image
image = Image.open("lena.jpg")
buffer=[]
for pixel in image.getdata():
buffer.append((
pixel[0],
pixel[1],
pixel[2],
pixel[3]-150,
))
image.putdata(buffer)
image.save(‘python_filter2.png‘)
change the value of the alpha channel
以上是关于alpha channel的主要内容,如果未能解决你的问题,请参考以下文章