|
Préférences
Moteurs de recherche
|
|||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
java.awt.image
|
Constructor Summary | |
---|---|
protected |
LookupTable(int offset,
int numComponents)
Constructs a new LookupTable from the number of components and an offset into the lookup table. |
Method Summary | |
---|---|
int |
getNumComponents()
Returns the number of components in the lookup table. |
int |
getOffset()
Returns the offset. |
abstract int[] |
lookupPixel(int[] src,
int[] dest)
Returns an int array of components for
one pixel. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected LookupTable(int offset, int numComponents)
offset
- the offset to subtract from input values before indexing
into the data arrays for this LookupTable
numComponents
- the number of data arrays in this
LookupTable
IllegalArgumentException
- if offset
is less than 0
or if numComponents
is less than 1Method Detail |
---|
public int getNumComponents()
LookupTable
.public int getOffset()
LookupTable
.public abstract int[] lookupPixel(int[] src, int[] dest)
int
array of components for
one pixel. The dest
array contains the
result of the lookup and is returned. If dest is
null
, a new array is allocated. The
source and destination can be equal.
src
- the source array of components of one pixeldest
- the destination array of components for one pixel,
translated with this LookupTable
int
array of components for one
pixel.