public enum SvgColorMode extends Enum<SvgColorMode>
Сolor mode for SVG images.
| Enum Constant and Description |
|---|
Cmyk
CMYK image.
|
Grayscale
The Grayscale image.
|
Rgb
The RGB Color mode.
|
YCbCr
YCbCr image, standard option for SVG images.
|
Ycck
The YCCK color image.
|
| Modifier and Type | Method and Description |
|---|---|
static SvgColorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SvgColorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvgColorMode Grayscale
The Grayscale image.
public static final SvgColorMode YCbCr
YCbCr image, standard option for SVG images.
public static final SvgColorMode Cmyk
CMYK image.
public static final SvgColorMode Ycck
The YCCK color image.
public static final SvgColorMode Rgb
The RGB Color mode.
public static SvgColorMode[] values()
for (SvgColorMode c : SvgColorMode.values()) System.out.println(c);
public static SvgColorMode 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.