Trait opencv::highgui::QtFontTraitConst[][src]

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) -> &i32 { ... }
fn greek(&self) -> &i32 { ... }
fn cyrillic(&self) -> &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