I'm trying to make a simple application with pyglet. My main problem so far is that I can't seem to blit an image with alpha - all of the transparent pixels are converted into black pixels. I'm not sure whether the problem is with the loading of the image or the blitting. Here is a very basic overview of how I'm trying to render the image:
import pyglet
import pyglet.clock
window = pyglet.window.Window()
window.config.alpha_size = 8
#fancy text
text = pyglet.resource.image("text.png")
#background image
bg = pyglet.resource.image("bg.png")
bg.blit(0, 0)
text.blit(100, 100)
pyglet.app.run()
Any help is appreciated. Thanks in advance.
You most likely just need to enable GL ALPHA blends.
But first of all, your code is not able to run. Mostly because you don't declare a
window.event
function to handle theon_draw
where you normally render things.Secondly, you never clear your window (which will cause a mess).
Here's a minimal working example of your code:
Now this generates this:
And here's a working example of how you use the GL_BLEND feature:
This yields a result like so:
However, this code will quickly become messy.
So there's two things you can do. You can first, put your images into sprite objects. Secondly, make this a bit more object oriented.
First, we'll use sprites.
Sprites automatically uses transparency, which makes your life (and code) a lot easier.
Secondly, we'll put these into a batch.
Batches are made to bunch A LOT of sprites so you can call
.draw()
on the batch, and all sprites in that batch gets insta-rendered.Last and most certainly not least.
We'll put this into a class so we can do cool stuff later on.
BAM.
This code will enable you to create custom functions and custom "player objects" later on for instance. Also you can do collision detection easier and the code just looks a lot more structured (I threw in a little bonus features such as keyboard and mouse events).
Note tho, that the position of the sprites will default to
x=0, y=0
as shown in the last picture. You can set the position withx=100
either on the variable/handle or when creating the sprite.