views:

40

answers:

1

I need to take a screen shot and convert that screen shot to a 16 bit color depth.

I am using C# and .net cf 3.5.

I think I could adapt this solution to do it, but I want to know if that is overkill. Is there a way to do this just using .NET CF (ie, no/less p-invokes.)

If it can be done just using .NET CF then it would be easier on maintainers that will have to work on the code at a later date.

+2  A: 

Depending on what you are converting from this shows how to convert a 24bit to 16bit.

http://stackoverflow.com/questions/2378690/convert-24-bit-bmp-to-16-bit

kyndigs
Perfect! Thanks!
Vaccano
For future reference, its better etiquette to make links to other SO questions as comments against the original question. That way this question can be closed as a duplicate.
PaulG