python如何用点画一个黑圆

python如何用点画一个黑圆
2025-01-31 03:05:51
推荐回答(1个)
回答1:

用到Image, ImageDraw模块

代码如下

import Image, ImageDraw
image = Image.new('RGBA', (200, 200))
draw = ImageDraw.Draw(image)
draw.ellipse((20, 180, 180, 20), fill = 'blue', outline ='blue')
#draw.ellipse((20, 20, 180, 180), fill = 'black', outline ='black')
draw.point((100, 100), 'red')
image.save('test.png')