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的主要内容,如果未能解决你的问题,请参考以下文章

9.3 客户端接收响应信息(异步转同步的实现)

Golang面经ChannelContextGoroutine

牛逼的This使用

xml解析案例

RabbitMQ - Work queues

worker模式