home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
RGBImageFilter.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
297b
|
16 lines
import java.awt.image.*;
public class \Name\ extends java.awt.image.RGBImageFilter
{
public \Name\ ()
{
super ();
}
public int filterRGB(int x, int y, int rgb)
{
int AResult = 0;
//Add your code here
return AResult;
}
}