|
|
|||||||||||||
Class PaletteEntrypublic final class PaletteEntry { // Fields public int peBlue; public int peFlags; public int peGreen; public int peRed; // Constructors public PaletteEntry(); public PaletteEntry(byte[] b, int count, int flags); } Specifies a color palette entry when creating palettes using the createPalette method. Note that the fields of this class take values indicating the intensity of red, green, or blue. Intensity values are unsigned values in the range 0 to 255, unlike byte values which range from -128 to 127. When assigning intensity values to these fields, you may need to cast such values to byte type. ConstructorsPaletteEntrypublic PaletteEntry(); PaletteEntrypublic PaletteEntry(byte[] b, int count, int flags); Fields
|
© 1998 Microsoft Corporation. All rights reserved. Terms of use. |