pub trait QtFontTraitConst {
Show 13 methods fn as_raw_QtFont(&self) -> *const c_void; fn name_font(&self) -> String { ... } fn color(&self) -> Scalar { ... } fn font_face(&self) -> i32 { ... } fn ascii(&self) -> *const i32 { ... } fn greek(&self) -> *const i32 { ... } fn cyrillic(&self) -> *const i32 { ... } fn hscale(&self) -> f32 { ... } fn vscale(&self) -> f32 { ... } fn shear(&self) -> f32 { ... } fn thickness(&self) -> i32 { ... } fn dx(&self) -> f32 { ... } fn line_type(&self) -> i32 { ... }
}
Expand description

QtFont available only for Qt. See cv::fontQt

Required Methods

Provided Methods

Name of the font

Color of the font. Scalar(blue_component, green_component, red_component[, alpha_component])

See cv::QtFontStyles

font data and metrics

slope coefficient: 0 - normal, >0 - italic

See cv::QtFontWeights

horizontal interval between letters

PointSize

Implementors