Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Color を配列 int として argb に変換する方法
擬似例
Color color=nw.GetPixel(i, j); int[] argbarray = color.toARGBArray(); result: argbarray[0]=255 (alpha) argbarray[1]=241 (red) argbarray[2]=128 (green) argbarray[3]=69 (blue)