30 4 月, 2021 python画圆角矩形 作者 李兴球 在 pillow, python 标签 python draw rounded rectangle, python rounded rectangle, python画圆角矩形 下面的程序生成了一个圆角矩形图片,保存在c盘的根目录。 from PIL import Image, ImageDraw im = Image.new("RGBA", (300, 100), (0, 0, 0,0)) draw = ImageDraw.Draw(im, "RGBA") draw.rounded_rectangle((00, 0, 300, 100), 30,width=5, outline=(200,200,220,255)) im.show() im.save('c:/test.png')
发表评论