Initializes font structure
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void InitFont( out CvFont font, FontFace fontFace, double hscale, double vscale )
Parameters
- font
- Type: OpenCvSharpCvFont
font structure initialized by the function. - fontFace
- Type: OpenCvSharpFontFace
Font name identifier. Only a subset of Hershey fonts are supported now. - hscale
- Type: SystemDouble
Horizontal scale. If equal to 1.0f, the characters have the original width depending on the font type. If equal to 0.5f, the characters are of half the original width. - vscale
- Type: SystemDouble
Vertical scale. If equal to 1.0f, the characters have the original height depending on the font type. If equal to 0.5f, the characters are of half the original height.
See Also