91焦先生

导航

2020年6月24日 #

十进制颜色转换成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 91焦先生 阅读(1381) 评论(0) 推荐(0) 编辑