use clap::Parser;
use crispyconv;
use std::error::Error;
use std::fs::File;
use std::io::Read;
use std::path::PathBuf;
fn main() {
argb_main().unwrap()
}
#[derive(Parser)]
#[clap(about)]
struct Args {
input: PathBuf,
#[clap(value_parser = crispyconv::RawInfo::parse_str)]
format: crispyconv::RawInfo,
output: PathBuf,
}
fn argb_main() -> Result<(), Box<dyn Error>> {
let args = Args::parse();
let mut src = File::open(args.input)?;
let mut b = Vec::new();
src.read_to_end(&mut b)?;
let mut b = b.chunks(4);
crispyconv::write_bgra_pixels_to_tiff(
&mut || b.next(),
(args.format.width_px, args.format.height_px),
&args.output,
)?;
Ok(())
}