IfcImage.Height

IfcImage.Height property

Gets the image height. It is calculated from all the entities

public override int Height { get; }

Property Value

The image height.

Examples

Gets the height of the image.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var height = ifcImage.Height
}

See Also