我正在尝试使用我在教程中找到的一些代码来绘制带圆角的矩形,由我稍微修改:
# Rounded rectangle algorithm copied from http://ju.outofmemory.cn/entry/18060
def round_corner(self, radius, fill):
corner = Image.new('RGBA', (radius, radius), (0, 0, 0, 0))
draw = ImageDraw.Draw(corner)
draw.pieslice((0, 0, radius * 2, radius * 2), 180, 270, fill=(fill))
return corner
def round_rectangle(self, size, radius, fill):
width, height = size
rectangle = Image.new('RGBA', size, red)
corner = self.round_corner(radius, fill)
rectangle.paste(corner, (0, 0))
rectangle.paste(corner.rotate(90), (0, height - radius)) # Rotate the corner and paste it
rectangle.paste(corner.rotate(180), (width - radius, height - radius))
rectangle.paste(corner.rotate(270), (width - radius, 0))
return rectangle
# Get rounded box
img = self.round_rectangle((200, 200), 30, black)
# Join with output image
self.image_canvas.paste(img, (500,500))
但是在用tkinter显示它之后我的结果看起来像这样:
请注意圆角外的灰色方角。这似乎发生在我的Windows和Ubuntu开发机器上。我不确定他们是如何到达那里或如何摆脱它们。
答案 0 :(得分:1)
事实证明,粘贴功能需要一个遮罩,即使原始图像本身具有Alpha通道。因此,您可以将正在合并的图像的Alpha通道直接用作蒙版:
self.image_canvas.paste(img, (500,500), img)