使用pygame繪製文字

2021-09-29 14:58:54 字數 827 閱讀 5616

一、使用文字需要匯入乙個方法 freetype

具體方法

pygame.freetype.font(「c:\windows\fonts\方正粗黑宋簡體.ttf」,24)

前者表示字型型別,後者表示字型大小

字型型別在電腦的c盤windows >>fonts檔案下

import pygame,sys

import pygame.freetype

pygame.init(

)pos=

[150

,150

]gold=

255,

251,

0black=0,

0,0screen=pygame.display.set_mode(

(600

,400))

pygame.display.set_caption(

"繪製文字"

)f1=pygame.freetype.font(

"c:\windows\fonts\方正粗黑宋簡體.ttf",24

)f1rect=f1.render_to(screen,pos,

"世界和平,承蒙關照"

,fgcolor=gold,bgcolor=black,

)while

true

:for event in pygame.event.get():

if event.

type

== pygame.quit:

sys.exit(

) pygame.display.update(

)

Python使用Pygame繪製時鐘

前提條件 需要安裝pygame 功能 1.初始化介面顯示乙個時鐘介面 2.根據當前的時間實現時針 分針 秒針的移動 import pygame,sys,random,math from datetime import datetime from pygame.locals import def pr...

pygame實時重新整理文字 pygame文字繪製

pygame的文字繪製 size width,height 640,480 設定視窗的大小 print pygame.display.info screen pygame.display.set mode size 將視窗顯示到螢幕上 print pygame.display.info 在set m...

pygame繪製橢圓方法

繪製圓形方法 pygame.draw.ellipse su ce,color,rect,width pygame 官網介紹說明方法 circle方法介紹 surfuce引數 傳入需要在該su ce物件上繪製圓形的su ce物件 color引數 需要繪製圓形的線的顏色,傳入乙個rgb三原色元組 rec...