Java examples for 2D Graphics:Color
get Green from int color
//package com.java2s; public class Main { public static void main(String[] argv) throws Exception { int rgb = 2; System.out.println(getGreen(rgb)); }/* ww w .j av a 2 s . com*/ public static int getGreen(int rgb) { return (rgb >> 8) & 0xFF; } }