All Packages Class Hierarchy This Package Previous Next Index
Class ncsa.hdf.awt.image.ImageColorModel
java.lang.Object
|
+----ncsa.hdf.awt.image.ImageColorModel
- public class ImageColorModel
- extends Object
set up the color model for displaying the image
created by the data sets from the file
-
blue
-
-
green
-
-
red
-
-
ImageColorModel()
- default color model
-
ImageColorModel(byte[])
- create the new color model
-
ImageColorModel(byte[], byte[], byte[])
- create the new color model
-
ImageColorModel(char[])
- create the new color model
-
ImageColorModel(int, int, int)
- Create the new color model
-
getBlue()
-
-
getColorModel()
- get the color model value
-
getGreen()
-
-
getRed()
-
red
public byte red[]
green
public byte green[]
blue
public byte blue[]
ImageColorModel
public ImageColorModel(int r,
int g,
int b)
- Create the new color model
- Parameters:
- r - the red value
- g - the green value
- b - the blue value
ImageColorModel
public ImageColorModel()
- default color model
ImageColorModel
public ImageColorModel(byte rgb[])
- create the new color model
- Parameters:
- rgb - rgb value
ImageColorModel
public ImageColorModel(byte r[],
byte g[],
byte b[])
- create the new color model
- Parameters:
- red - The array of red color components.
- green - The array of green color components.
- blue - The array of blue color components.
ImageColorModel
public ImageColorModel(char rgb[])
- create the new color model
- Parameters:
- rgb - rgb value
getColorModel
public IndexColorModel getColorModel()
- get the color model value
getRed
public byte[] getRed()
getGreen
public byte[] getGreen()
getBlue
public byte[] getBlue()
All Packages Class Hierarchy This Package Previous Next Index