Today, display monitors have an 8-bit channel or 24-bit color, and most of them work in sRGB color mode. A graphical interface and a graphical library such as Qt and X work within these limits. for example, you can create a QImage from an array of unsigned chars (8 bits per channel), but no more.
So what happens to these high-end monitors that offer, say, 1024 shades of gray? Qt does not offer a 30-bit color mode, nor X. How do I use all the bits per channel?
Arlen
source share