how to display images in pygame code example
Example 1: load images pygame
import pygame
from pygame.locals import*
img = pygame.image.load('clouds.bmp')
white = (255, 64, 64)
w = 640
h = 480
screen = pygame.display.set_mode((w, h))
screen.fill((white))
running = 1
while running:
screen.fill((white))
screen.blit(img,(0,0))
pygame.display.flip()
Example 2: how to blit image in pygame
def blit_img(img,x,y):
screen.blit(img,[x,y])
Example 3: How to make an image in pygame
pygame.image.load('ufo.png')