“Como reduzir a largura da imagem no pygame” Respostas de código

Como reduzir a largura da imagem no pygame

import pygame
picture = pygame.image.load(filename)
picture = pygame.transform.scale(picture, (1280, 720))
Helpful Hamerkop

tamanho do pygame da imagem

image = pygame.image.load("path/to/file.png")  # load image

width, height = image.get_width(), image.get_height()  # get size
print(width, height)  # print size

"""
OUTPUT:
(50, 50)
"""
grimmigerFuchs

Respostas semelhantes a “Como reduzir a largura da imagem no pygame”

Perguntas semelhantes a “Como reduzir a largura da imagem no pygame”

Mais respostas relacionadas para “Como reduzir a largura da imagem no pygame” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código