Python 3 - 如何使用PIL合成两张图片?

时间:2016-11-08 13:28:07

标签: python-3.x pillow

我尝试使用遗传算法生成由三角形图片组成的图片。我使用Image.blend()函数,但结果太暗,看起来很糟糕。我怎么处理它? / p>

image_config = {
'mode': 'RGBA',
'size': sourceimg.size,
'color': 'black'
}




im = Image.new(**image_config)
for res in self.decode(chrom):
    im_tmp = Image.new(**image_config)
    draw = ImageDraw.Draw(im_tmp, 'RGBA')
    draw.polygon(xy=[res[0], res[1], res[2]], fill=res[3])
    im = Image.blend(im, im_tmp, 0.5)

1 个答案:

答案 0 :(得分:0)