1 2 3 4 5 6 7 8
fn main() { for elem in std::env::args().skip(1) { pnm::decode(&std::fs::read(elem).unwrap()) .unwrap() .rgba() .show(); } }