public enum SvgImageType extends Enum<SvgImageType>
Represents type of raster image within SVG image.
| Enum Constant and Description |
|---|
Bmp
Windows Bitmap.
|
Gif
Gif image format
|
Jpeg
JPEG JFIF.
|
Png
Portable Network Graphics.
|
Tiff
Tiff image format
|
Unknown
Unknown format
|
| Modifier and Type | Method and Description |
|---|---|
static SvgImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SvgImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvgImageType Jpeg
JPEG JFIF.
public static final SvgImageType Png
Portable Network Graphics.
public static final SvgImageType Bmp
Windows Bitmap.
public static final SvgImageType Gif
Gif image format
public static final SvgImageType Tiff
Tiff image format
public static final SvgImageType Unknown
Unknown format
public static SvgImageType[] values()
for (SvgImageType c : SvgImageType.values()) System.out.println(c);
public static SvgImageType 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.