3

我有一个 python 程序,可以创建一个带有圆圈的 png 文件。现在我希望这个圆圈是半透明的,给定一个 alpha 值。

这是我所做的:

img_map = Image.new(some arguments here)
tile = Image.open('tile.png')
img_map.paste(tile, (x,y))
canvas = ImageDraw.Draw(img_map)

# Now I draw the circle:
canvas.ellipse((p_x - 5, p_y - 5, p_x + 5, p_y + 5), fill=(255, 128, 10))

# now save and close
del canvas
img_map.save(path_out + file_name, 'PNG')

如何使椭圆半透明?

谢谢

4

2 回答 2

3

代替 3 元组 RGB 值 (255, 128, 10),传递 4 元组 RGBA 值:

canvas.ellipse((p_x - 5, p_y - 5, p_x + 5, p_y + 5), 
               fill=(255, 128, 10, 50))

例如,

import Image
import ImageDraw

img = Image.new('RGBA', size = (100, 100), color = (128, 128, 128, 255))
canvas = ImageDraw.Draw(img)

# Now I draw the circle:
p_x, p_y = 50, 50
canvas.ellipse((p_x - 5, p_y - 5, p_x + 5, p_y + 5), fill=(255, 128, 10, 50))

# now save and close
del canvas
img.save('/tmp/test.png', 'PNG')

在此处输入图像描述

于 2013-04-29T10:45:49.093 回答
0

我曾经Image.composite(background, foreground, mask)在前景上遮盖一个半透明的圆圈。

我按照这里的说明进行操作: 在 PIL 中将背景与透明图像合并

感谢@gareth-res

于 2013-04-29T18:29:34.080 回答