IImageResource

IImageResource interface

Represents image resource of any type, raster or vector

public interface IImageResource : IHtmlResource, IImage

Properties

Name Description
AspectRatio { get; } 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.
LinearDimensions { get; } 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.
Type { get; } In implementing type should return a type of specific image as an instance of specific ImageType, which encapsulates all type-specific info

Remarks

https://developer.mozilla.org/en-US/docs/Web/CSS/image

See Also