本文整理匯總了Python中graphics.Graphics.blit_surface方法的典型用法代碼示例。如果您正苦於以下問題:Python Graphics.blit_surface方法的具體用法?Python Graphics.blit_surface怎麽用?Python Graphics.blit_surface使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類graphics.Graphics
的用法示例。
在下文中一共展示了Graphics.blit_surface方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from graphics import Graphics [as 別名]
# 或者: from graphics.Graphics import blit_surface [as 別名]
def main():
ext.init()
graphics = Graphics(640, 480)
TTF_Init()
font = TTF_OpenFont(b"rebel.ttf", 16)
if(not font):
print(TTF_GetError())
color = SDL_Color(180, 189, 180)
s = "Un Deux Trois Quatre"
text = b"Un Deux Trois Quatre"
text2 = bytes(s, "utf-8")
surface = TTF_RenderText_Solid(font, text2, color)
x = 50
y = 30
srcRect = SDL_Rect(0, 0, surface.contents.w, surface.contents.h)
dstRect = SDL_Rect(x, y, surface.contents.w, surface.contents.h)
texture = SDL_CreateTextureFromSurface(graphics.renderer, surface)
graphics.blit_surface(texture, srcRect, dstRect)
while(not SDL_QuitRequested()):
SDL_Delay(250)
graphics.flip()
TTF_CloseFont(font)
TTF_Quit()
ext.quit()