Interface IImageSize
Can for example be implemented by a website's MediaData type(s) to avoid having to load a blob in memory to determine an image's dimensions and filesize.
Namespace: AdaptiveImages.Providers
Assembly: AdaptiveImages.dll
Syntax
public interface IImageSize
Properties
Filesize
Filesize in bytes.
Declaration
int Filesize { get; }
Property Value
Type | Description |
---|---|
int |
Height
Height in pixels.
Declaration
int Height { get; }
Property Value
Type | Description |
---|---|
int |
Width
Width in pixels.
Declaration
int Width { get; }
Property Value
Type | Description |
---|---|
int |