Dicom Reader is a small Rust utility/library program that uses dicom_core and serde to read a dicom file, parse the dicom properties and return them as JSON.
run the command below to build
cargo build
the .dll file should be available at target/debug/dicom_parser.dll
Run the command below to release the .dll
cargo build --release
the .dll file should be available at target/release/dicom_parser.dll
Run the command below to run all the tests
cargo test