Here you can find the source of toRGBAArray(int colorBuffer)
public static int[] toRGBAArray(int colorBuffer)
//package com.java2s; //License from project: Open Source License public class Main { public static int[] toRGBAArray(int colorBuffer) { return new int[] { (colorBuffer >> 16 & 255), (colorBuffer >> 8 & 255), (colorBuffer & 255), (colorBuffer >> 24 & 255) }; }//from w ww. j a va 2 s . c om }