十进制颜色转换成RGB(转)
摘要:oid toRgba(int color){ int rgb=new int[3]; int b = color & 0xff; int g = (color >> 8) & 0xff; int r = (color >> 16) & 0xff; rgb[0]=r; rgb[1]=g; rgb[2]
阅读全文
posted @ 2020-06-24 12:13
posted @ 2020-06-24 12:13
posted @ 2020-06-02 18:37