fix: make sure the image has width 800
1 files changed, 4 insertions(+), 1 deletions(-) M linux_app/src/main.rs
M linux_app/src/main.rs => linux_app/src/main.rs +4 -1
@@ 34,7 34,10 @@ async fn main() -> tokio_serial::Result<()> { img = img.rotate90(); } let rgb_img = img.resize(WIDTH.try_into().unwrap(), HEIGHT.try_into().unwrap(), FilterType::Nearest).into_rgb8(); let ratio = WIDTH as f64 / img.width() as f64; let height = (ratio * img.height() as f64) as u32; let rgb_img = img.resize_exact(WIDTH.try_into().unwrap(), height, FilterType::Nearest).into_rgb8(); let mut raw_img = rgb_img.into_raw(); raw_img.resize(TOTAL_BYTES, 0x00);