Package org.gdal.gdal
Class ColorTable
java.lang.Object
org.gdal.gdal.ColorTable
- All Implemented Interfaces:
Cloneable
Class ColorTable represents a color table / palette.
The ColorTable class is a binding for the C++ GDALColorTable class.
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new color table.ColorTable
(int ePaletteInterpretation) Construct a new color table. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Make a copy of a color table.Clone()
Make a copy of a color table.void
CreateColorRamp
(int nStartIndex, Color startcolor, int nEndIndex, Color endcolor) Create color ramp.void
delete()
GetColorEntry
(int entry) Fetch a color entry from table.int
GetCount()
Get number of color entries in table.getIndexColorModel
(int bits) int
Fetch palette interpretation.void
SetColorEntry
(int entry, Color centry) Set entry in color table.
-
Constructor Details
-
ColorTable
public ColorTable(int ePaletteInterpretation) Construct a new color table. -
ColorTable
public ColorTable()Construct a new color table.Same as below with ePaletteInterpretation == gdalconst.GPI_RGB
- See Also:
-
-
Method Details
-
delete
public void delete() -
clone
Make a copy of a color table. -
getIndexColorModel
-
Clone
Make a copy of a color table. -
GetPaletteInterpretation
public int GetPaletteInterpretation()Fetch palette interpretation.The returned value is used to interpret the values in the GDALColorEntry.
- Returns:
- palette interpretation enumeration value, usually gdalconst.GPI_RGB.
-
GetCount
public int GetCount()Get number of color entries in table.- Returns:
- the number of color entries.
-
GetColorEntry
Fetch a color entry from table.- Parameters:
entry
- entry offset from zero to GetCount()-1.- Returns:
- color entry, or null if index is out of range.
-
SetColorEntry
Set entry in color table.The passed in entry must match the color interpretation of the table to which it is being assigned.
The table is grown as needed to hold the supplied offset.
- Parameters:
entry
- entry offset from zero to GetCount()-1.centry
- value to assign to table.
-
CreateColorRamp
Create color ramp.Automatically creates a color ramp from one color entry to another. It can be called several times to create multiples ramps in the same color table.
- Parameters:
nStartIndex
- index to start the ramp on the color table [0..255]startcolor
- a color value to start the rampnEndIndex
- index to end the ramp on the color table [0..255]endcolor
- a color value to end the ramp
-