1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
use crate::alt::{BGR, BGRA}; use crate::{RGB, RGBA}; impl<T: Copy> From<[T; 3]> for RGB<T> { #[inline] fn from(other: [T; 3]) -> Self { Self { r: other[0], g: other[1], b: other[2], } } } impl<T> Into<[T; 3]> for RGB<T> { #[inline] fn into(self) -> [T; 3] { [self.r, self.g, self.b] } } impl<T: Copy> From<[T; 4]> for RGBA<T> { #[inline] fn from(other: [T; 4]) -> Self { Self { r: other[0], g: other[1], b: other[2], a: other[3], } } } impl<T> Into<[T; 4]> for RGBA<T> { #[inline] fn into(self) -> [T; 4] { [self.r, self.g, self.b, self.a] } } impl<T: Copy> From<[T; 3]> for BGR<T> { #[inline] fn from(other: [T; 3]) -> Self { Self { b: other[0], g: other[1], r: other[2], } } } impl<T> Into<[T; 3]> for BGR<T> { #[inline] fn into(self) -> [T; 3] { [self.b, self.g, self.r] } } impl<T: Copy> From<[T; 4]> for BGRA<T> { #[inline] fn from(other: [T; 4]) -> Self { Self { b: other[0], g: other[1], r: other[2], a: other[3], } } } impl<T> Into<[T; 4]> for BGRA<T> { #[inline] fn into(self) -> [T; 4] { [self.b, self.g, self.r, self.a] } } #[test] fn convert_array() { use crate::alt::{BGR8, BGRA8}; use crate::{RGB8, RGBA8}; assert_eq!(RGB8::from([1, 2, 3]), RGB8::new(1, 2, 3)); assert_eq!(Into::<[u8; 3]>::into(RGB8::new(1, 2, 3)), [1, 2, 3]); assert_eq!(RGBA8::from([1, 2, 3, 4]), RGBA8::new(1, 2, 3, 4)); assert_eq!(Into::<[u8; 4]>::into(RGBA8::new(1, 2, 3, 4)), [1, 2, 3, 4]); assert_eq!(BGR8::from([3, 2, 1]), BGR8::new(1, 2, 3)); assert_eq!(Into::<[u8; 3]>::into(BGR8::new(1, 2, 3)), [3, 2, 1]); assert_eq!(BGRA8::from([3, 2, 1, 4]), BGRA8::new(1, 2, 3, 4)); assert_eq!(Into::<[u8; 4]>::into(BGRA8::new(1, 2, 3, 4)), [3, 2, 1, 4]); }