pygame is
Python
Simple DirectMedia Layer
 
 
pygame.org is
Site Swing
applies_alpha()

applies_alpha() -

josmiley (josmiley)

Tags:

Description

not a project, just a trick
how to applies alpha channel from a surface to another ?
surface1 and surface2 must have the same size

from pygame import *
def applies_alpha(surface1,surface2):
#return a surface
#applies the alpha channel from surface1 to surface2
output = surface2.copy().convert_alpha()
surfarray.pixels_alpha(output)[:] = surfarray.array_alpha(surface1)[:]
return output

Links

Home Page: http://www.pygame.org/

Screenshot


click to view original size

Releases

applies_alpha() -  - Sep 7, 2010

Pygame.org account Comments

If you wish to leave a comment with your pygame.org account, please sign in first.

No user comments have been submitted.
spotlight

 
our projects
pygame.org welcomes all python game, art, music, sound, video and multimedia projects. If they use pygame or not.
 
recent releases
Feb 12, 2012

Feb 11, 2012


Feb 10, 2012


Feb 9, 2012


Feb 7, 2012

Feb 5, 2012


Feb 4, 2012

Feb 3, 2012

... more!
 
for pygame related questions, comments, and suggestions, please see help (lists, irc)