-1
import pygame, sys
from pygame.locals import *
pygame.init()
window = pygame.display.set_mode((640,360),0,32)
pygame.display.set_caption("My game.")
black = [0,0,0]
white = [255,255,255]
img = pygame.image.load("images/bg.jpg").convert_aplpha() # This is where I get the error.
我得到的錯誤是img = pygame.image.load("images/bg.jpg").convert_aplpha() AttributeError: 'pygame.Surface' object has no attribute 'convert_aplpha'
請,這是什麼意思,以及如何可以解決呢?我很新的Python和pygame的和我無法理解這個錯誤信息
不僅它不是一個函數,但它也不是一個屬性。作爲'load()'返回類型的成員,'convert_aplpha'完全不存在。 – kgraney
是的,你是對的。我似乎已經犯了一個錯字。謝謝。 –