I'm simply trying to load an image with pygame with that piece of code :
import pygame
myimage = pygame.image.load("bla.png")
And I get the error :
pygame.error: File is not a Windows BMP file
Note that when I call pygame.image.get_extended()
it returns 0.
How can I fix that and get the other formats ?
Thanks