Here you can find the source of toRGBA(int color)
public static int[] toRGBA(int color)
//package com.java2s; //License from project: Open Source License public class Main { public static int[] toRGBA(int color) { int alpha = color >> 24 & 255; int red = color >> 16 & 255; int green = color >> 8 & 255; int blue = color & 255; return new int[] { red, green, blue, alpha }; }/* ww w . ja v a2 s.co m*/ }