Fixed error handling
This commit is contained in:
parent
d2fb7a6ca4
commit
804e041c20
@ -4,6 +4,6 @@ fn main() {
|
|||||||
println!("Converting test.webp to test.png.");
|
println!("Converting test.webp to test.png.");
|
||||||
let img_raw = ImageReader::open("test.webp").expect("Failed to load test.webp.")
|
let img_raw = ImageReader::open("test.webp").expect("Failed to load test.webp.")
|
||||||
let img = img_raw.decode().expect("Failed to decode the image.");
|
let img = img_raw.decode().expect("Failed to decode the image.");
|
||||||
img.save("test.png").("Failed to save test.png.");
|
img.save("test.png").expect("Failed to save test.png.");
|
||||||
println!("Done.");
|
println!("Done.");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user