Here you can find the source of getGreenF(int col)
public static float getGreenF(int col)
//package com.java2s; //License from project: Open Source License public class Main { public static float getGreenF(int col) { return (float) ((col & 0x0000ff00) >> 8) / 255; }/* www . ja v a2s . c o m*/ }