我在網上找到了一個教程(在Youtube上),它向我展示了使用pygame創建遊戲的基礎知識。我發現他說的那種圖像和他所擁有的圖像。他沒有說要把他們救到哪裏,我想這可能是我的問題。在這裏,這是我在我的節目一個例子,什麼對錯誤爲什麼我的pygame圖片無法加載?
bif="bg.jpg"
mif="images.png"
import pygame, sys
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((420,315),0,32)
backround=pygame.image.load(bif).convert()
mouse_c=pygame.image.load(mif).convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(backround, (0,0))
x,y = pygame.mouse.get_pos()
x -= mouse_c.get_width()/2
y -+ mouse_c.get_height()/2
screen.blit(mouse_c, (x,y))
pygame.display.update()
錯誤讀取顯示出來:
Traceback (most recent call last):
File "C:/Python26/pygame.games/pygame
1", line 10, in <module>
backround=pygame.image.load(bif).convert()
error: Couldn't open bg.jpg
請儘快作出迴應。
你在哪裏存儲圖像?您是否嘗試過使用圖片的絕對路徑,例如「C:/Python26/pygame.games/bg.jpg」? –