All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----java.awt.image.ImageFilter
|
+----java.awt.image.RGBImageFilter
|
+----gjt.image.DissolveFilter
Extent of dissolving is set by the setOpacity(int) method, which is passed an integer between 0 and 255 (inclusive). The integer represents the alpha value to be applied to every color in the image.
An alpha value of 255 signifies an opaque color, while an alpha value of 0 signifies a translucent color.
public DissolveFilter()
public DissolveFilter(int opacity)
public void setOpacity(int opacity)
public int filterRGB(int x,
int y,
int rgb)
All Packages Class Hierarchy This Package Previous Next Index