Tagged Questions

1
vote
2answers
176 views

Python PIL: Create indexed color image with transparent background

I wonder how I could create a image with a transparent background and only 2 indexed colours (red and blue) to minimise the file size? More specifically I have two black and white images that I want ...
1
vote
1answer
168 views

How do I determine if an indexed mode SDL_Surface has transparency or not?

I've got code I've been working with to load and convert SDL_Surfaces to OpenGL textures, however I've realized that they only work with RGB(A) surfaces. I need to extend the support onto indexed mode ...