文字操作使用模块pygame.font
操作的步骤如下:
1. 创建一个font对象
my_font = pygame.font.SysFont("arial", 16)
或
my_font = pygame.font.Font("my_font.ttf", 16)
2. 写字
text_surface = my_font.render("Hello world!", True, (0,0,0), (255,255,255))
3. 把写下的字发到界面上
screen.blit(text_surface, (x,y))
或保存成图片
pygame.image.save(text_surface, "text.png")