RGB888到RGB565 /位移(RGB888 to RGB565 / Bit Shifting)

2019-06-26 06:10发布

我想三个字符组合成一个短使用位转移。 这是用于实现RGB565调色板(其中有红色,6 5个比特为绿色,5蓝色)。

这里是我的示例程序,我只是缺少中间的某个步骤,我认为,我需要做一些安定。

#include <stdio.h>

int main( ){
        unsigned char r, g, b;
        unsigned short rgb;

        r = 255;        // 0xFF 1111 1111
        g = 100;        // 0x64 0110 0100
        b = 50;         // 0x32 0011 0010

        r = r >> 3;     // 0x31 0001 1111
        g = g >> 2;     // 0x19 0001 1001
        b = b >> 3;     // 0x06 0000 0110

        //r = r & something; //
        //g = g & something; //
        //b = b & something; //

        // Desired result:
        //          R      G     B
        // 0xFB26 11111 011001 00110
        rgb = r | g | b;

        printf( "r 0x%x g 0x%x b 0x%x, rgb 0x%08x\n", r, g, b, rgb );
}

你可以看到底我想要的结果。 谢谢您的帮助!

Answer 1:

rgb = ((r & 0b11111000) << 8) | ((g & 0b11111100) << 3) | (b >> 3);

我们移位r由11位左, g由5位和位左或这些与b右移3位。 (注:这是假定值已经正确地屏蔽,如果需要的话,删除任何不需要的位。)



Answer 2:

感谢您的A2A。 我也面临着同样的问题。 下面的代码会帮助你。

unsigned int r,g,b; // Pixel data in the RGB
unsigned char x1,x2; // The container for resulting 2 bytes

x1 = (r & 0xF8) | (g >> 5); // Take 5 bits of Red component and 3 bits of G component

x2 = ((g & 0x1C) << 3) | (b  >> 3); // Take remaining 3 Bits of G component and 5 bits of Blue component

你可以在GitHub的Python程序。 https://github.com/ajay126z/RGB888ToRGB565-Converter



文章来源: RGB888 to RGB565 / Bit Shifting