8-bit color
8-bit color graphics are a method of storing image information in a computer's memory or in an image file, so that each pixel is represented by 8 bits. The maximum number of colors that can be displayed at any one time is 256 per pixel or 28.
Color quantization
In order to turn a true color 24-bit image into an 8-bit image, the image must go through a process called color quantization. Color quantization is the process of creating a color map for a less color dense image from a more dense image.The simplest form of quantization is to simply assign 3 bits to red, 3 bits to green and 2 bits to blue, as the human eye is less sensitive to blue light. This creates a so called 3-3-2 8-bit color image, arranged like on the following table:
Bit 7 6 5 4 3 2 1 0
Data R R R G G G B B
This process is sub optimal. There could be different groupings of colors that make evenly spreading the colors out inefficient and likely to misrepresent the actual image.
An alternative approach is to use a palette, with each of the 256 possible indexes pointing towards a larger color space.
Because the color map doesn't need to have every color in it and just needs to accurately represent the more color dense image, an arbitrary color can be assigned to each of the 256 available color indexes on the map.
Popular approaches for creating these maps include the popularity algorithm which chooses the 256 most common colors and creates a map from them. The more accurate median cut algorithm resorts and divides colors to find the median of different color groups resulting in a more accurate final color map.
Usage
Because of the low amount of memory and resultant higher speeds of 8-bit color images, 8-bit color was a common ground among computer graphics development until more memory and higher CPU speeds became readily available to consumers. 8-bit color was used in many different applications including:- The MSX2 series of personal computer
- The Uzebox gaming console
- The Atari Falcon
- The NTSC version of the Atari GTIA
- The Tiki 100 personal computer
- The Research Machines 380Z computer equipped with a High Resolution Graphics board.
- Wearable OS smartwatches with ambient displays
- Many scanners use an 8-bit grey scale as their standard
Even though it is now outdated for most consumer applications, 8-bit color encoding can still be useful in imaging systems with limited data bandwidth or memory capacity. For example, both Mars Exploration Rovers used an 8-bit grayscale format for navigation imaging.