logiWIN supports the following image storage formats:
1. RGB565 - 16 bits per pixel (bpp), takes 2 bytes in memory; 5-bit red, 6-bit green and 5-bit blue, no alpha channel
2. RGB888 - 24 bpp, takes 4 bytes in memory (1 dummy byte); 8-bit red, 8-bit green and 8-bit blue, no alpha channel
3. ARGB6565 - 16 bpp, takes 4 bytes in memory (1 dummy byte, 1 byte reserved for alpha channel); 6-bit alpha channel, 5-bit red, 6-bit green and 5-bit blue
4. ARGB8888 - 24 bpp, takes 4 bytes in memory (1 byte reserved for alpha channel); 8-bit alpha channel, 8-bit red, 8-bit green and 8-bit blue
5. YCrCb - 16 bpp, takes 2 bytes in memory; compressed in 4:2:2 format, no alpha channel. |