Package | Description |
---|---|
com.groupdocs.editor.htmlcss.resources.images |
The com.groupdocs.editor.htmlcss.resources.images namespace provides classes that represent image resources of all types in general.
|
com.groupdocs.editor.htmlcss.resources.images.raster |
The com.groupdocs.editor.htmlcss.resources.images.raster namespace provides classes that represent only raster image resources.
|
com.groupdocs.editor.htmlcss.resources.images.vector |
The com.groupdocs.editor.htmlcss.resources.images.vector namespace provides classes that represent only vector image resources.
|
Modifier and Type | Method and Description |
---|---|
ImageType |
ImageType.Clone() |
static ImageType |
ImageType.getBmp()
BMP image type
|
static ImageType |
ImageType.getGif()
GIF image type
|
static ImageType |
ImageType.getIcon()
ICON image type
|
static ImageType |
ImageType.getJpeg()
JPEG image type
|
static ImageType |
ImageType.getPng()
PNG image type
|
static ImageType |
ImageType.getSvg()
SVG vector image type
|
ImageType |
IImageResource.getType()
In implementing type should return a type of specific image as an
instance of specific ImageType, which encapsulates all type-specific info
|
static ImageType |
ImageType.getUndefined()
Undefined image type - special value, which should not normally occur
|
static ImageType |
ImageType.getWmf()
WMF (Windows MetaFile) vector image type
|
static ImageType |
ImageType.parseFromFilenameWithExtension(String filename)
Returns ImageType value, which is equivalent of filename extension, which
is extracted from specified filename
|
static ImageType |
ImageType.parseFromMime(String mimeCode)
Returns ImageType value, which is equivalent of specified MIME code
|
Modifier and Type | Method and Description |
---|---|
void |
ImageType.CloneTo(ImageType that) |
boolean |
ImageType.equals(ImageType other)
Determines whether this instance is equal with specified "ImageType"
instance
|
static boolean |
ImageType.equals(ImageType obj1,
ImageType obj2) |
static boolean |
ImageType.op_Equality(ImageType first,
ImageType second)
Defines whether two specific ImageType instances are equal
|
static boolean |
ImageType.op_Inequality(ImageType first,
ImageType second)
Defines whether two specific ImageType instances are not equal
|
Modifier and Type | Method and Description |
---|---|
ImageType |
BmpImage.getType()
Returns ImageType.Bmp
|
ImageType |
GifImage.getType()
Returns ImageType.Gif
|
ImageType |
IconImage.getType()
Returns ImageType.Icon
|
ImageType |
JpegImage.getType()
Returns ImageType.Jpeg
|
ImageType |
PngImage.getType()
Returns ImageType.Png
|
abstract ImageType |
RasterImageResourceBase.getType()
In implementing type should return information about type of the raster
image
|
Modifier and Type | Method and Description |
---|---|
ImageType |
SvgImage.getType()
Returns ImageType.Svg
|
abstract ImageType |
VectorImageResourceBase.getType()
In implementing type should return information about type of the vector
image
|
ImageType |
WmfImage.getType()
Returns ImageType.Wmf
|
Copyright © 2020. All rights reserved.