python中pygame模块用法实例
本文实例讲述了python中pygame模块用法,分享给大家供大家参考。具体方法如下:
import pygame, sys 
from pygame.locals import * 
 
#set up pygame 
pygame.init() 
 
windowSurface = pygame.display.set_mode((500, 400), 0, 32) 
pygame.display.set_caption("hello, world") 
 
BLACK = (0, 0, 0) 
WHITE = (255, 255, 255) 
RED = (255, 0, 0) 
GREEN = (0, 255, 0) 
BLUE = (0, 0, 255) 
 
basicFont = pygame.font.SysFont(None, 48) 
text = basicFont.render("Hello ,world", True, WHITE, BLUE) 
textRect = text.get_rect() 
 
textRect.centerx = windowSurface.get_rect().centerx 
textRect.centery = windowSurface.get_rect().centery 
 
windowSurface.fill(WHITE) 
 
pygame.draw.polygon(windowSurface, GREEN, ((146, 0),  
(291, 106), (236, 277), (56, 277), (0, 106)))  
 
pygame.draw.line(windowSurface, BLUE, (60, 60), (120,  
60), 4)  
pygame.draw.line(windowSurface, BLUE, (120, 60), (60,  
120))  
pygame.draw.line(windowSurface, BLUE, (60, 120), (120,  
120), 4)  
pygame.draw.circle(windowSurface, BLUE, (300, 50), 20, 0) 
 
pygame.draw.ellipse(windowSurface, RED, (300, 250, 40,  
80), 1)  
 
pygame.draw.rect(windowSurface, RED, (textRect.left - 20,  
textRect.top - 20, textRect.width + 40, textRect.height + 40)) 
 
pixArray = pygame.PixelArray(windowSurface)  
pixArray[480][380] = BLACK  
del pixArray  
 
windowSurface.blit(text, textRect)  
 
pygame.display.update() 
 
while True:  
  for event in pygame.event.get():  
    if event.type == QUIT:  
      pygame.quit()  
      sys.exit()运行后打出的图片如下:

希望本文所述对大家的Python程序设计有所帮助。
相关推荐
  快递小可    2020-08-16  
   RocNg    2020-05-03  
   unit00    2020-03-03  
   fly00love    2020-02-10  
   wyqwilliam    2020-01-09  
   柠檬班    2020-01-06  
   JasonYeung    2019-05-17  
   elizabethxxy    2019-05-14  
   hfuturer    2019-03-18  
   crackerzhou    2019-05-08  
   迷途风景    2019-05-14  
   野先生    2019-03-13  
   一叶不知秋    2019-03-07  
   chouliqingke    2019-03-04  
   远哥的小迷弟    2019-03-03  
   pengkunstone    2018-02-17  
   sulindong0    2018-01-19  
   SnowLi    2018-01-15  
   hanxia    2019-02-26