Answers for "how to change the size of imges in pygame"

13

how to change the scale of a picture in pygame

import pygame
picture = pygame.image.load(filename)
picture = pygame.transform.scale(picture, (1280, 720))
Posted by: Guest on November-16-2020
-2

rezise object pygame

import pygame

# Load picture
picture = pygame.image.load("your/file/directery.png") # choose a picture and spesefy directery

# Resize
picture = pygame.transform.scale(picture # spesefy the objekt, (100, 100))# here is the scale by pixels
Posted by: Guest on January-06-2021

Code answers related to "how to change the size of imges in pygame"

Python Answers by Framework

Browse Popular Code Answers by Language