Binding for MagickSetSize

This commit is contained in:
Daniel Rönnkvist
2020-03-25 14:26:41 +01:00
parent 6efd70c41a
commit 7d805d9a83
2 changed files with 14 additions and 0 deletions

View File

@ -319,3 +319,9 @@ fn test_set_background_color() {
assert_eq!(0u8, blob[2]);
assert_eq!(0u8, blob[3]);
}
#[test]
fn test_set_size() {
let wand = MagickWand::new();
assert!(wand.set_size(100, 100).is_ok());
}