mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 07:12:55 -05:00
18 lines
403 B
Rust
18 lines
403 B
Rust
pub mod cz_common;
|
|
pub mod formats{
|
|
pub mod cz0;
|
|
pub mod cz1;
|
|
}
|
|
|
|
// Generic tools
|
|
use std::fs;
|
|
|
|
use crate::{cz_common::CzImage, formats::cz1::Cz1Image};
|
|
|
|
fn main() {
|
|
let input = fs::read("../test_files/x5a3bvy.cz1").expect("Error, could not open image");
|
|
let cz1_file = Cz1Image::decode(&input).unwrap();
|
|
println!("{:#?}", cz1_file.header());
|
|
|
|
cz1_file.save_as_png("test.png")
|
|
}
|