我正在用pyGame做一个赋值,一个非常简单的,我们必须在一个窗口中加载一个图像,但是它没有加载!并且 IDLE 没有显示任何错误..我尝试了图像的相对路径 (room.png) 和绝对路径 (C:...\room.png),但什么也没有。这是我的代码。
import pygame, sys #import pygame and system library
from pygame import * #import all pygame sublibs
pygame.init()
screen = display.set_mode((385,384)) #set screen size
display.set_caption("Blit example")
#this one gets the current working directory
background_file_name = "room.png" #import bg
background_surface = pygame.image.load(background_file_name) #use bg
while True:
for e in pygame.event.get():
if e.type==QUIT: #break the loop and quit
pygame.quit()
sys.exit()
break
screen.fill((255,0,255)) #fill the screen with magenta
screen.blit(background_surface, (0,0))
display.update()