摘要: 场景 我需要把下面一张图片中的深黄色(255,255,0)替换成(255,204,0)。使用到pillow库。 code from PIL import Image img = Image.open("logo.png") for i in range(2048): for j in range(2 阅读全文
posted @ 2018-03-07 23:08 Jneeee 阅读(6342) 评论(1) 推荐(1) 编辑