摘要: //从Color类型得到RGB类型 public int GetRGBFromColor(Color color) { byte r = color.R; byte g = color.G; byte b = color.B; //转化为32bit RGB值: int rgb = (r & 0xff... 阅读全文
posted @ 2015-08-31 18:21 卡萨丁·周 阅读(281) 评论(0) 推荐(0) 编辑