二、pygame基本圖形繪製

1.繪製文字 下面定義了一個白色,字體大小爲60,在x=200,y=200處開始繪製的文字 myfont = pygame.font.Font(None,60) white = 255,255,255 textImage = myfont.render("here", True, white) screen.blit(textImage, (200,200)) 加入上一章的程序後完整程序如下 #
相關文章
相關標籤/搜索