argb/
argb.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * SPDX-FileCopyrightText: 2024 DorotaC
 *
 * SPDX-License-Identifier: MPL-2.0 OR LGPL-2.1-or-later
 */

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()
}

/// Processes BGRA data into RGB
#[derive(Parser)]
#[clap(about)]
struct Args {
    /// Path to raw BGRA data
    input: PathBuf,
    /// Format: width_px,height_px,bpp
    #[clap(value_parser = crispyconv::RawInfo::parse_str)]
    format: crispyconv::RawInfo,
    /// TIFF output
    output: PathBuf,
}

fn argb_main() -> Result<(), Box<dyn Error>> {
    let args = Args::parse();
    
    // No reason to load it all frst, other than "it works now".
    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(())
}