Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
436 views

Capture screenshot of program using indexed color table

There are numerous tutorial on the web on how to capture and save a screenshot using C#. For example, I used this website to obtain my solution: using (var screenshot = new ...
2
votes
1answer
1k views

How to convert an Indexed pixel format image to a 32-bit image?

I have an image that I get and attempt to load into a graphics object using Graphics.FromImage(image), however this throws an exception if the image has an indexed pixel format. Is there a way to ...
1
vote
2answers
179 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
169 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 ...
0
votes
0answers
126 views

MATLAB: 3-Channel indexed images

I work in microscopy image processing with MATLAB and use a module to load my images that checks if an input image is indexed and if so uses ind2rgb to convert it to rgb. I recently got some new ...