想象一下简单的脚本:
from PIL import Image
from aggdraw import Draw, Brush
im = Image.new("RGBA", (600, 600), (0, 0, 0, 0))
draw = Draw(im)
brush = Brush("yellow")
draw.polygon(
(
50, 50,
550, 60,
550, 550,
60, 550,
),
None, brush
)
draw.flush()
im.save("2.png")
结果:
(抱歉尺寸太大,但这样更清楚)
问题是:你能看到非黄色和非白色的边缘吗?这是阿尔法 channel 什么的。
当我尝试仅使用 PIL
的 Draw
对象执行此操作时 - 它看起来清晰且良好,但没有抗锯齿。
但是使用aggdraw
的Draw
对象,它看起来是抗锯齿的,但是有丑陋的脏边缘。
我需要具有非标准边角的多边形。简单的盒子不是我想要的。
请帮我提供一些乐观的答案来解决这个问题。
这是因为你的背景是黑色的,但是是透明的。如果将图像背景设置为白色,则不会看到可见边缘。在我的简单测试中,透明或纯白色都有效。
尝试这些值:
transBlack = (0, 0, 0, 0) # shows your example with visible edges
solidBlack = (0, 0, 0, 255) # shows shape on a black background
transWhite = (255, 255, 255, 0)
solidWhite = (255, 255, 255, 255)
im = Image.new("RGBA", (600, 600), solidWhite)
我是一名优秀的程序员,十分优秀!