public interface IImageResource extends IHtmlResource, IImage
Represents image resource of any type, raster or vector
Disposed
Modifier and Type | Method and Description |
---|---|
Ratio |
getAspectRatio()
In implementing type should return an aspect ratio of particular image
regardless of its type.
|
Dimensions |
getLinearDimensions()
In implementing type should return linear dimensions of the image.
|
ImageType |
getType()
In implementing type should return a type of specific image as an
instance of specific ImageType, which encapsulates all type-specific info
|
getByteContent, getFilenameWithExtension, getName, getTextContent, save
isDisposed
dispose
Ratio getAspectRatio()
In implementing type should return an aspect ratio of particular image regardless of its type. Both vector and raster images have intrinsic aspect ratio between its width and height.
Dimensions getLinearDimensions()
In implementing type should return linear dimensions of the image. For raster images they are intrinsic dimensions in pixels. Vector images, in counterpart, have no fixed dimensions, but their metadata can contain some basic dimensions in different measurement units.
ImageType getType()
In implementing type should return a type of specific image as an instance of specific ImageType, which encapsulates all type-specific info
getType
in interface IHtmlResource