I have some card images in size 140x190 and I'm using the pygame.trnasform.scale
method to resize to 105x143 which is a proportional value. But it is losing quality, whereas the images of verses that are basically a background color and a white border do not lose. How do I resolve this?
Code within the class:
self.frente = pygame.image.load("imagens/{}/carta ({}).png".format(naipe, valor)).convert()
self.frente = pygame.transform.scale(self.frente, [98, 133])
self.verso = pygame.image.load("imagens/versos/azul (1).png")
self.verso = pygame.transform.scale(self.verso, [98, 133])