diff --git a/src/orientation.rs b/src/orientation.rs index c1b8af4f42..37399e47c8 100644 --- a/src/orientation.rs +++ b/src/orientation.rs @@ -32,9 +32,10 @@ impl Orientation { 4 => Some(Self::FlipVertical), 5 => Some(Self::Rotate90FlipH), 6 => Some(Self::Rotate90), - 7 => Some(Self::Rotate90FlipH), + 7 => Some(Self::Rotate270FlipH), 8 => Some(Self::Rotate270), 0 | 9.. => None, } } + }