com.memoire.bu
Class BuFilters.EmbossFilter

java.lang.Object
java.awt.image.ImageFilter
java.awt.image.RGBImageFilter
com.memoire.bu.BuFilters.EmbossFilter
- All Implemented Interfaces:
- java.lang.Cloneable, java.awt.image.ImageConsumer
- Enclosing class:
- BuFilters
- static class BuFilters.EmbossFilter
- extends java.awt.image.RGBImageFilter
|
Field Summary |
private int |
a1_
|
private int |
a2_
|
private int |
a3_
|
private int |
h1_
|
private int |
h2_
|
private int |
h3_
|
private int |
var
|
|
Method Summary |
int |
filterRGB(int _x,
int _y,
int _rgb)
Filters a single pixel from the default ColorModel. |
java.lang.String |
toString()
Convert this Object to a human-readable String. |
a1_
private int a1_
h1_
private int h1_
a2_
private int a2_
h2_
private int h2_
a3_
private int a3_
h3_
private int h3_
var
private int var
BuFilters.EmbossFilter
protected BuFilters.EmbossFilter()
filterRGB
public int filterRGB(int _x,
int _y,
int _rgb)
- Description copied from class:
java.awt.image.RGBImageFilter
- Filters a single pixel from the default ColorModel.
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).