AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.2.6" />

.NET API 393,728 bytes

 HTMLImageElement

public sealed class HTMLImageElement : HTMLElement
Represents the image element.
public string Alt { get; set; }

Gets or sets the alternative text.

public bool Complete { get; }

Gets if the image is completely available.

public string CrossOrigin { get; set; }

Gets or sets the cross-origin attribute.

public uint Height { get; set; }

Gets or sets the displayed height of the image element.

public bool IsMap { get; set; }

Gets or sets if the image element is a map. The attribute must not be specified on an element that does not have an ancestor a element with an href attribute.

public uint NaturalHeight { get; }

Gets the height of the image.

public uint NaturalWidth { get; }

Gets the width of the image.

public string Src { get; set; }

Gets or sets the image source.

public string UseMap { get; set; }

Gets or sets the usemap attribute, which indicates that the image has an associated image map.

public uint Width { get; set; }

Gets or sets the displayed width of the image element.