Here you can find the source of toRGBA(Color c)
public static int toRGBA(Color c)
//package com.java2s; //License from project: Mozilla Public License import java.awt.Color; public class Main { public static int toRGBA(Color c) { return c.getRed() | c.getGreen() << 8 | c.getBlue() << 16 | c.getAlpha() << 24; }/* w w w . j ava 2 s .c om*/ }