IfcImage.Width

IfcImage.Width property

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

public override int Width { get; }

Property Value

The image width.

Examples

Gets the width of the image.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var width = ifcImage.Width
}

See Also