cryiorust

Rust implementation of IO routines to read and write images produced by various 2D X-ray detectors.

Supported formats

Usage example: ```rust use std::{io, fmt}; use cryiorust::frame::{self, Frame}; use std::path::Path;

fn test_cbf + fmt::Debug>(path: P) -> io::Result> { let testfile = path; let cbf: Box = frame::open(testfile)?; println!("Frame size: {}x{}", cbf.dim1(), cbf.dim2()); println!("Frame sum: {}", cbf.sum()); Ok(cbf) } ```

License: GPL-3.0+