[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Font



Read the docs.

Simple example:

antialias = True
color = (255,0,0)
Font = pygame.font.SysFont("Times New Roman",12)
RenderedFontSurface = Font.render("blah",antialias,color)

Ian