Can someone give me some example code that creates a surface with a transparent background in pygame?
|
1
|
|
|
|
|
|
This should do it:
Make sure that the color depth (32) stays explicitly set else this will not work. |
||
|
|
|
|
You can also give it a colorkey, much like GIF file transparency. This is the most common way to make sprites. The original bitmap has the artwork, and has a certain color as background that will not be drawn, which is the colorkey:
Surfaces that uses colorkey instead of alpha are a lot faster to blit since they don't require any blend math. The SDL surface uses a simple bitmask when it has a colorkey set, which blits practically without overhead. |
|||
|
|
