Class OcrResult.OcrFont
Detailed font information returned when using Tesseract OEM engine modes.
Inheritance
System.Object
OcrResult.OcrFont
Namespace: IronOcr
Assembly: IronOcr.dll
Syntax
public class OcrFont : Object
Properties
FontName
Best guess at the closest known typeface name.
Declaration
public string FontName { get; }
Property Value
Type | Description |
---|---|
System.String |
FontSize
Best guess at the font height in points.
Declaration
public double FontSize { get; }
Property Value
Type | Description |
---|---|
System.Double |
IsBold
Is the text Bold.
Declaration
public bool IsBold { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsCaligraphic
Is the text in a calligraphic or "Fruktur" style.
Declaration
public bool IsCaligraphic { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFixedWidth
Is the text FixedWidth (monospaced like Courier).
Declaration
public bool IsFixedWidth { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsItalic
Is the text Italic.
Declaration
public bool IsItalic { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSerif
Is the text Serif (like Times-New Roman).
Declaration
public bool IsSerif { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSmallCaps
Is the text in "Small Caps" (half height capital letters).
Declaration
public bool IsSmallCaps { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsUnderlined
Is the text Underlined.
Declaration
public bool IsUnderlined { get; }
Property Value
Type | Description |
---|---|
System.Boolean |