gdcm_conv

An easy-to-use Grassroots DICOM Library wrapper designed to convert DICOM files transfer syntaxes.

Usage

Add gdcm_conv to the dependencies section in your project's Cargo.toml, with:

toml [dependencies] gdcm_conv = "0.1.0"

You need CMake to build GDCM Library and wrapper.

Linux Ubuntu:

cmd sudo apt-get install cmake

Windows:

Download CMake directly from www.cmake.org/download page.

Warning

The GDCM library is big and may take some time to build it. Rushed people, please use very verbose option:

cmd cargo run -vv

Quickstart

Copy this code and make sure you have a DICOM file to test.

```rust use std::io::prelude::*; use std::fs::File;

fn main() {

// open and read file
let mut ibuffer = Vec::new();
let mut ifile = File::open("input.dcm").unwrap();    
ifile.read_to_end(&mut ibuffer).unwrap();

let obuffer = match gdcm_conv::transcode(
    ibuffer,
    gdcm_conv::TransferSyntax::Unknown,
    gdcm_conv::TransferSyntax::JPEG2000(100, 0, 0, false),
    None,
    None
) {
    Ok(t) => t,
    Err(e) => {
        println!("{}", e);
        return;
    }
};

// create file and save
let mut ofile = File::create("output.dcm").unwrap();
ofile.write_all(&obuffer).unwrap();

} ```

License

Most of the code in this repository is provided under the GPL license. However note that this crate links statically to GDCM Library which has its own (permissive) license, which you can find at /GDCM/Copyright.txt.