當前位置: 首頁>>代碼示例>>Python>>正文


Python Graphics.blit_surface方法代碼示例

本文整理匯總了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()
開發者ID:hissalht,項目名稱:pyupyupyu,代碼行數:39,代碼來源:font.py


注:本文中的graphics.Graphics.blit_surface方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。