Skip to main content

Pygame Translucent Colour Overflow Error

·95 words·1 min

Curious. Whenever I specify a colour with alpha >= 128 I get an OverflowError.

OverflowError: Python integer -2136243419 out of bounds for uint32

Overflows:

color = pygame.Color(171, 131, 37, 128)

Works fine:

color = pygame.Color(171, 131, 37, 127)

Reading up on the documentation for Pygame’s Surface class, I think the problem stems from the type of transparency handling I’m using. There are three options:

colorkeys - choose one colour to represent transparent areas surface alphas - one parameter controls the opacity of the entire surface pixel alphas - each pixel can have a different opacity