3 unstable releases

new 0.7.0 Apr 25, 2024
0.1.1 Nov 21, 2023
0.1.0 Jul 23, 2023

#1618 in Parser implementations

Download history 82/week @ 2024-01-01 114/week @ 2024-01-08 109/week @ 2024-01-15 116/week @ 2024-01-22 130/week @ 2024-01-29 29/week @ 2024-02-05 86/week @ 2024-02-12 116/week @ 2024-02-19 42/week @ 2024-02-26 93/week @ 2024-03-04 59/week @ 2024-03-11 54/week @ 2024-03-18 27/week @ 2024-03-25 121/week @ 2024-04-01 80/week @ 2024-04-08 128/week @ 2024-04-15

356 downloads per month

MIT/Apache

2MB
33K SLoC

DICOM-rs json

crates.io Documentation

This sub-project is directed at users of the DICOM-rs ecosystem. It provides serialization of DICOM data to JSON and deserialization of JSON to DICOM data, as per the DICOM standard part 18 chapter F.

This crate is part of the DICOM-rs project.


lib.rs:

DICOM JSON module

This library provides serialization of DICOM data to JSON and deserialization of JSON to DICOM data, as per the DICOM standard part 18 chapter F.

The easiest path to serialization is in using the functions readily available to_string and to_value. Alternatively, DICOM data can be enclosed by a DicomJson value, which implements serialization and deserialization via Serde.

Example

To serialize an object to standard DICOM JSON:

let obj = InMemDicomObject::from_element_iter([
    InMemElement::new(tags::SERIES_DATE, VR::DA, "20230610"),
    InMemElement::new(tags::INSTANCE_NUMBER, VR::IS, "5"),
]);

let json = dicom_json::to_string(&obj)?;

assert_eq!(
    json,
    r#"{"00080021":{"vr":"DA","Value":["20230610"]},"00200013":{"vr":"IS","Value":["5"]}}"#
);

To turn DICOM JSON back into an in-memory object:

let json = r#"{
    "00080021": { "vr": "DA", "Value":["20230610"] },
    "00200013": { "vr": "IS", "Value":["5"] }
}"#;
let obj: InMemDicomObject = dicom_json::from_str(&json)?;

Use the DicomJson wrapper type for greater control on how to serialize or deserialize data:

let dicom_obj = dicom_json::DicomJson::from(&obj);
let serialized = serde_json::to_value(dicom_obj)?;

assert_eq!(
    serialized,
    serde_json::json!({
        "00080021": {
            "vr": "DA",
            "Value": [ "20230610" ]
        },
        "00200013": {
            "vr": "IS",
            "Value": [ "5" ]
        }
    }),
);

Dependencies

~7–13MB
~139K SLoC