码迷,mamicode.com
首页 > 其他好文 > 详细

alpha channel

时间:2019-04-24 13:28:07      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:value   change   buffer   port   put   rom   python   channel   The   

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

标签:value   change   buffer   port   put   rom   python   channel   The   

原文地址:https://www.cnblogs.com/ax204/p/10761785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!