pub fn draw_text_mut<'a, C>(
canvas: &'a mut C,
color: C::Pixel,
x: i32,
y: i32,
scale: Scale,
font: &'a Font<'a>,
text: &'a str,
)
Expand description
Draws colored text on an image in place.
scale
is augmented font scaling on both the x and y axis (in pixels).
Note that this function does not support newlines, you must do this manually.