Python Forum
[pyGame] Load Image, Problem Found !
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[pyGame] Load Image, Problem Found !
#1
Hey Programmers...

I Try to load an image in pygame... This is my script:

import pygame
import sys
 
screen = pygame.display.set_mode((800,600))
done = False
  
while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                done = True
                
    pygame.image.load(os.path.join('C:/Users/Gebruiker/Desktop/Renders', 'Render.png'))
    screen.fill((255,255,255))
    pygame.display.update()
pygame.quit()
sys.exit()

for event in pygame.event.get():
    if event.type == pygame.KEYDOWN:
        if event.key == pygame.K_SPACE:
            screen.fill((255,000,000))
            pygame.display.update()
If i run this script... the display screen of my game (simple test) is black and the image
load slowly.... the image is not so big, but my game (or simple test) are craching...

Can anyone help me ?...

Thanks for help, Jamie...
Reply


Messages In This Thread
[pyGame] Load Image, Problem Found ! - by JamieVanCadsand - Sep-29-2017, 02:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with pygame.event.clear qq12346 1 2,145 Oct-05-2023, 08:39 AM
Last Post: patriciainman
  pygame double jump problem Yegor123 3 2,636 May-02-2023, 09:34 PM
Last Post: sudoku6
  Pygame Zero - no actor image toiling_away 2 1,864 Oct-14-2022, 12:16 AM
Last Post: toiling_away
  [PyGame] Sprite image rotation problem XavierPlatinum 4 2,395 Jul-25-2022, 01:31 PM
Last Post: Ruslan8819
  How to make an image move in relation to another in PYGAME CompleteNewb 1 2,336 Nov-10-2021, 03:38 PM
Last Post: metulburr
  (HELP GREATLY APPRECIATED) New user- Huge Pygame Installation Problem! Jbomb 1 2,865 Jan-12-2021, 07:32 PM
Last Post: MK_CodingSpace
  problem with pygame Aladdin 3 4,263 Jun-25-2020, 01:41 PM
Last Post: Aladdin
  pygame module not found on Idle after installing on Mac crunchypen 1 3,552 May-09-2020, 11:03 PM
Last Post: metulburr
  Pycharm dosnt load pygame Matres 1 2,003 Mar-16-2020, 02:15 AM
Last Post: Larz60+
  open cv ->pygame: turn image into location Gamedeveloper 1 2,087 Jan-20-2020, 05:00 PM
Last Post: michael1789

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020