home ~ projects ~ socials

Get The Size Of An Image In Rust

use imagesize::size;

fn main() {
    let img = size("image_test/tmp.png").unwrap();
    dbg!(img.width);
    dbg!(img.height);

}

use: crate add imagesize to get the crate installed.

-- end of line --