本文整理汇总了Python中surface.Surface.setFont方法的典型用法代码示例。如果您正苦于以下问题:Python Surface.setFont方法的具体用法?Python Surface.setFont怎么用?Python Surface.setFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类surface.Surface
的用法示例。
在下文中一共展示了Surface.setFont方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render
# 需要导入模块: from surface import Surface [as 别名]
# 或者: from surface.Surface import setFont [as 别名]
def render(self, text, antialias=True, color=(0,0,0), background=None, surface=None): #optional surface for text rendering
"""
Render text onto surface.
Arguments are text to render, and optional antialias, RGB color of text, RGB color of background, and surface for text rendering.
"""
if not surface:
w,h = self.size(text)
surf = Surface((w,h))
else:
surf = surface
w,h = surface.width, surface.height
if background:
surf.setFillStyle(Color(background))
surf.fillRect(0,0,w,h)
surf.setFont('%s %dpx %s' % (self.fontstyle, self.fontsize, self.fontname))
# if antialias: pass
surf.setFillStyle(Color(color))
surf.fillText(text,0,self.fontsize)
if self.underline:
surf.setLineWidth(1)
surf.setStrokeStyle(Color(color))
surf.setStroke(BasicStroke(1))
surf.moveTo(0, h-1)
surf.lineTo(w-1, h-1)
surf.stroke()
return surf