import pygame import sys pygame.display.init() imgSurf = pygame.image.load ( sys.argv [ 1 ] ) screen = pygame.display.set_mode ( imgSurf.get_size() ) screen.blit ( imgSurf, ( 0, 0 ) ) pygame.display.flip() raw_input() pygame.quit()