全局变量之C与Pthon的差异
更新中
height = 80
# 黑色背景,RGB值为:(0, 0, 0)
image = Image.new('RGB', (width, height), (0, 0, 0))
# 创建 Font 对象,设定字体大小为 36
font = ImageFont.truetype('C:/Windows/Fonts/verdana.ttf', 36)
# 创建Draw对象
draw = ImageDraw.Draw(image)
# 填充每个像素
for x in range(width):
for y in range(height):
draw.point((x, y), fill=rndColor())
# 输出文字