:491B : :1 :2022-10-12 15:15:42
C语言:RGB26转RGB16如果开发者对于本文件有需要的可以参考。
public static int RgbGet16(int R, int G, int B) {
UInt16 temp = 0;
UInt16 output = 0;
temp |= (UInt16)(R >> 3);
output |= (UInt16)(temp << 11);
temp = 0;
temp |= (UInt16)(G >> 2);
output |= (UInt16)(temp << 5);
temp = 0;
temp |= (UInt16)(B >> 3);
output |= (UInt16)(temp);
int color16 = output;
return color16;
}
10-19C语言基础
10-19数据结构 C语言描述
10-19单片机翻屏C语言代码.c
10-19C语言程序设计及应用实例
10-19C语言与数据结构
10-19C语言深度剖析pdf
10-19c语言基础.ppt
10-19C语言求最小公倍数
10-12易语言开源简洁C语言编辑器源码