Tagged Questions
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 ...