Here you can find the source of getBrightness(Color c)
public static int getBrightness(Color c)
//package com.java2s; //License from project: Apache License import java.awt.Color; public class Main { public static int getBrightness(Color c) { final int r = c.getRed(); final int g = c.getGreen(); final int b = c.getBlue(); return (int) Math.sqrt(r * r * .241 + g * g * .691 + b * b * .068); }//from w ww . ja v a 2s .c o m }