public enum DitheringMethods extends Enum<DitheringMethods>
The dithering methods used to control color conversion.
| Enum Constant and Description |
|---|
CustomConverter
The custom converter.
|
PaletteConversion
The palette is not ignored and wise color conversion should be applied.
|
PaletteIgnore
The palette is ignored
|
| Modifier and Type | Method and Description |
|---|---|
static DitheringMethods |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DitheringMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DitheringMethods PaletteIgnore
The palette is ignored
public static final DitheringMethods PaletteConversion
The palette is not ignored and wise color conversion should be applied.
public static final DitheringMethods CustomConverter
The custom converter.
public static DitheringMethods[] values()
for (DitheringMethods c : DitheringMethods.values()) System.out.println(c);
public static DitheringMethods valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.