void RGB565ToRGB(unsigned short n565Color)
{
short nRed = (n565Color & 0xf800) >> 8;
short nGreen = (n565Color & 0x07e0) >> 3;
short nBlue = (n565Color & 0x001f) << 3;
}
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/231846.html原文链接:https://javaforall.net
