DicomDataSetLoadJsonFlags Enumeration (original) (raw)
Summary
Specifies flags to be used with the LoadJson methods.
Syntax
[FlagsAttribute()]
public enum DicomDataSetLoadJsonFlags
[FlagsAttribute()]
public enum class DicomDataSetLoadJsonFlags
Members
Value | Member | Description |
---|---|---|
0x00000000 | None | When loading a DICOM JSON Model input file, read all data (binary and non-binary) from the JSON file (i.e PixelData). |
0x00000001 | IgnoreBinaryData | When loading a DICOM JSON Model input file, ignore all binary data in the JSON input file. Note that the DICOM elements that contain the binary data will still be inserted into the DicomDataSet, but will have no values. |
0x00000002 | IgnoreAllData | When loading a DICOM JSON Model input file, ignore all data in the JSON input file. Note that all DICOM elements in the JSON file will still be inserted into the DicomDataSet, but will have no values. |
Example
using Leadtools.Dicom;
using Leadtools.Dicom.Common;
using Leadtools.Dicom.Common.Extensions;
using Leadtools;
using Leadtools.Dicom.Common.Linq.BasicDirectory;
using Leadtools.Dicom.Common.DataTypes;
using Leadtools.Codecs;
public void LoadJsonExample()
{
string dicomFileNameIn = Path.Combine(LEAD_VARS.ImagesDir,"DICOM", "image3.dcm");
string jsonFileNameOut = Path.Combine(LEAD_VARS.ImagesDir, "test.json");
// Initialize DICOM engine
DicomEngine.Startup();
DicomDataSet ds = new DicomDataSet();
// Load an existing DICOM file
ds.Load(dicomFileNameIn, DicomDataSetLoadFlags.None);
// Save as JSON with no binary data
// For the demo, keep the json output file size small by skipping the pixel data
const DicomDataSetSaveJsonFlags jsonFlags = DicomDataSetSaveJsonFlags.IgnoreBinaryData |
DicomDataSetSaveJsonFlags.TrimWhiteSpace;
ds.SaveJson(jsonFileNameOut, jsonFlags);
// Now reload the json file.
// Note that there will not be an image because we skipped the pixel data in the save
ds.LoadJson(jsonFileNameOut, DicomDataSetLoadJsonFlags.None);
DicomEngine.Shutdown();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}
See Also
Reference
Leadtools.Dicom.Common.Extensions Namespace
LoadJson(DicomDataSet,String,DicomDataSetLoadJsonFlags) Method
LoadJson(DicomDataSet,Stream,DicomDataSetLoadJsonFlags) Method
SaveJson(DicomDataSet,String,DicomDataSetSaveJsonFlags,SaveJsonCallback) Method
SaveJson(DicomDataSet,Stream,DicomDataSetSaveJsonFlags,SaveJsonCallback) Method
SaveJson(DicomDataSet,String,DicomDataSetSaveJsonFlags) Method
SaveJson(DicomDataSet,Stream,DicomDataSetSaveJsonFlags) Method
LoadJsonBeforeElementCallback Delegate
LoadJsonAfterElementCallback Delegate
Leadtools.Dicom.Common Assembly