Here you can find the source of colorWithIntAndAlpha(int color, int alpha)
public static int colorWithIntAndAlpha(int color, int alpha)
//package com.java2s; //License from project: Open Source License public class Main { public static int colorWithIntAndAlpha(int color, int alpha) { // from: http://processing.org/discourse/beta/num_1261125421.html return (color & 0xffffff) | (alpha << 24); }/*from w ww.j a va 2s .c o m*/ }