标签:text render 设置 ack font 文字 绘制 color raw
def drawText(self,text,posx,posy,textHeight=48,fontColor=(0,0,0),backgroudColor=(255,255,255)): fontObj = pygame.font.Font(‘simkai.ttf‘, textHeight) # 通过字体文件获得字体对象 textSurfaceObj = fontObj.render(text, True,fontColor,backgroudColor) # 配置要显示的文字 textRectObj = textSurfaceObj.get_rect() # 获得要显示的对象的rect textRectObj.center = (posx, posy) # 设置显示对象的坐标 self.screen.blit(textSurfaceObj, textRectObj) # 绘制字
标签:text render 设置 ack font 文字 绘制 color raw
原文地址:http://www.cnblogs.com/superxuezhazha/p/6690554.html