IfcImage.GetStrings

IfcImage.GetStrings method

Gets all string values from image. Can be useful to get some text from the image

public override string[] GetStrings()

Return Value

The array with string values.

Examples

Gets all string from the image.

using (IfcImage ifcImage = (IfcImage)Image.Load(fileName))
{
    var strings = ifcImage.GetStrings()
}

See Also