Here you can find the source of makeGrayImage(Image in)
public static Image makeGrayImage(Image in)
//package com.java2s; //License from project: Apache License import java.awt.*; import javax.swing.*; public class Main { public static Image makeGrayImage(Image in) { return (GrayFilter.createDisabledImage(in)); // swing 05 // return(GrayFilter.createGrayImage(in)); // swing 04 }/*from ww w . ja v a 2s.c o m*/ }