~ruther/stm32h747i-disco-usb-image-viewer

c037eb74549baec0e7371eff3fcc65036b97dc93 — Rutherther 3 months ago 4b3679a
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);


Do not follow this link