add draw_rectangle method

This commit is contained in:
Maks Rawski
2022-11-13 18:38:59 +01:00
parent 743f823032
commit f30dfb43fe

View File

@ -51,6 +51,24 @@ impl DrawingWand {
}
}
pub fn draw_rectangle(
&mut self,
upper_left_x: f64,
upper_left_y: f64,
lower_right_x: f64,
lower_right_y: f64,
) {
unsafe {
bindings::DrawRectangle(
self.wand,
upper_left_x,
upper_left_y,
lower_right_x,
lower_right_y,
);
}
}
string_set_get!(
get_font, set_font, DrawGetFont, DrawSetFont
get_font_family, set_font_family, DrawGetFontFamily, DrawSetFontFamily