色のない画像を作成すると、ガベージが発生することがあります (ランダムな色、点、または線)
image = Image.new("RGBA", (256, 256), None)
# draw a rectangle with rounded corners
image = draw_corner_box(image, radius=10)
# draw a rectangle with rounded corners and apply blur,
# paste image in the result and return
image = draw_shadow_box(image, radius=10)
image.save("image.png", "PNG")