Package com.mxgraph.util.png
Class mxPngSuggestedPaletteEntry
- java.lang.Object
-
- com.mxgraph.util.png.mxPngSuggestedPaletteEntry
-
- All Implemented Interfaces:
java.io.Serializable
public class mxPngSuggestedPaletteEntry extends java.lang.Object implements java.io.SerializableA class representing the fields of a PNG suggested palette entry.This class is not a committed part of the JAI API. It may be removed or changed in future releases of JAI.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description intalphaThe alpha opacity value of the entry.intblueThe blue color value of the entry.intfrequencyThe probable frequency of the color in the image.intgreenThe green color value of the entry.java.lang.StringnameThe name of the entry.intredThe red color value of the entry.intsampleDepthThe depth of the color samples.
-
Constructor Summary
Constructors Constructor Description mxPngSuggestedPaletteEntry()
-
-
-
Field Detail
-
name
public java.lang.String name
The name of the entry.
-
sampleDepth
public int sampleDepth
The depth of the color samples.
-
red
public int red
The red color value of the entry.
-
green
public int green
The green color value of the entry.
-
blue
public int blue
The blue color value of the entry.
-
alpha
public int alpha
The alpha opacity value of the entry.
-
frequency
public int frequency
The probable frequency of the color in the image.
-
-