comparison OrthancServer/DicomInstanceToStore.cpp @ 2409:e4045b3c9772

ignore-length argument if retrieving DICOM tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 27 Sep 2017 17:36:13 +0200
parents 7284093111b0
children 878b59270859
comparison
equal deleted inserted replaced
2408:26a0cc24d48d 2409:e4045b3c9772
110 } 110 }
111 111
112 if (!json_.HasContent()) 112 if (!json_.HasContent())
113 { 113 {
114 json_.Allocate(); 114 json_.Allocate();
115
116 std::set<DicomTag> ignoreTagLength;
115 FromDcmtkBridge::ExtractDicomAsJson(json_.GetContent(), 117 FromDcmtkBridge::ExtractDicomAsJson(json_.GetContent(),
116 *parsed_.GetContent().GetDcmtkObject().getDataset()); 118 *parsed_.GetContent().GetDcmtkObject().getDataset(),
119 ignoreTagLength);
117 } 120 }
118 } 121 }
119 122
120 123
121 124