Hi There,
I've been looking at wxImage and wxBitmap, and it looks like support for RGB images is well supported, but I need to display 16-bit Greyscale images.
Just to clarify, that's 1-channel of 16-bits, not the normal 1-channel of 8-bits.
I see the wxImage has a ConvertToGreyScale but my guess is it's 8-bit.
Also, I'm not loading these from a file. Is there a way to create a wxImage or wxBitmap as 16-bit greyscale from the constructor? It looks like you can reduce the depth to 16-bit, but it would still be RGB (i.e. 3-channels instead of 1).
Thanks