Here you can find the source of int2rgb(final int color)
public static int[] int2rgb(final int color)
//package com.java2s; //License from project: Apache License public class Main { public static int[] int2rgb(final int color) { return new int[] { (color >> 16) & 0xFF, (color >> 8) & 0xFF, color & 0xFF }; }// w ww. jav a 2 s. c o m }