Answers for "pygame.transform.scale()"

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
1

pygame.transform.scale

pygame.transform.scale(Surface, (width, height), DestSurface = None)
Posted by: Guest on April-16-2021
0

pygame scale

#Start Libraries
import pygame, sys
from pygame.locals import *
#End Libraries

pygame.init() #We're initializing the script

pygame.display.set_caption('Platform') #This is the name of the window
window_size = (600,400) #The size of the window
screen = pygame.display.set_mode(window_size) #Initializing the screen

image_not_scaled = pygame.image.load('file_path.png').convert() #Importing the image
image = pygame.transform.scale(image_not_scaled, (32, 32)) #You can insert whatever you want for example (64, 64)
														   #It MUST be a tuple

#Now we'll create the while loop
run = True #With this we can control the script (stop it)
while run: #For NOW itz a simple while true
    screen.fill((255, 255, 255)) #Filling the screen with white
    screen.blit(image, (0, 0)) #Blitting the image on the screen

    for event in pygame.event.get(): #Checking the events
        if event.type == QUIT: #Checking if the event is QUIT
            pygame.quit() #In that case we'll exit from pygame
            sys.exit() #In that case we'll exit from the script
    
    pygame.display.update() #Updating the screen
Posted by: Guest on August-18-2021
-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

Python Answers by Framework

Browse Popular Code Answers by Language