pub trait TextTraitConst {
// Required method
fn as_raw_Text(&self) -> *const c_void;
// Provided methods
fn text(&self) -> String { ... }
fn org(&self) -> Point { ... }
fn ff(&self) -> i32 { ... }
fn fs(&self) -> f64 { ... }
fn color(&self) -> Scalar { ... }
fn thick(&self) -> i32 { ... }
fn lt(&self) -> i32 { ... }
fn bottom_left_origin(&self) -> bool { ... }
}
Expand description
Constant methods for crate::gapi::Text
Required Methods§
fn as_raw_Text(&self) -> *const c_void
Provided Methods§
Sourcefn bottom_left_origin(&self) -> bool
fn bottom_left_origin(&self) -> bool
When true, the image data origin is at the bottom-left corner. Otherwise, it is at the top-left corner