open and display image
This commit is contained in:
parent
9592a5dc27
commit
fc87ea8835
2 changed files with 13 additions and 2 deletions
Binary file not shown.
Before Width: | Height: | Size: 701 KiB After Width: | Height: | Size: 212 KiB |
15
src/main.rs
15
src/main.rs
|
@ -1,3 +1,14 @@
|
||||||
fn main() {
|
use std::error::Error;
|
||||||
println!("Hello, world!");
|
|
||||||
|
use image::io::Reader as ImageReader;
|
||||||
|
use imageproc::window::display_image;
|
||||||
|
|
||||||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
|
let img = ImageReader::open("./assets/Xbox_Controller_Blank.png")?.decode()?;
|
||||||
|
let img = img.into_rgba8();
|
||||||
|
// println!("{:?}",);
|
||||||
|
|
||||||
|
display_image("Image", &img, 150, 151);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue