bif="bg.jpeg"
mif="ball.png"
import pygame
import sys
from pygame.locals import *
pygame.init()
screen_size=(640, 360)
screen=pygame.display.set_mode(screen_size, 0, 32)
background=pygame.image.load(bif).convert()
mouse_c=pygame.image.load(bif).convert_alpha()
while (True):
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(background, (0,0))
x,y = pygame.mouse.get_pos()
x -=mouse_c.get_width()/2
y -=mouse_c.get_height()/2
screeb.blit(mouse_c, (x,y))
pygame.display.update()
回溯(最近通話最後一個):pygame的不加載圖片(蟒蛇)(2.7.5)
文件 「C:\用戶\奧菲克\桌面\遊戲\ try.py」線12,在
背景= pygame.image.load(BIF).convert()
pygame.error:無法打開C:\用戶\地平線\桌面\遊戲\ bg.jpeg
確保您的圖像位於相同的目錄中。確保你的路徑是正確的。 – ecline6
它是在相同的目錄.. – user2410243
你確定嗎?請確保它的名稱,並確保它的名稱正確。你可以嘗試使用絕對路徑。 bif =「C:\\ Users \\ Ofek \\ Desktop \\ game \\ bg.jpeg」 – ecline6