←Select platform

SaveJson(DicomDataSet,string,DicomDataSetSaveJsonFlags,SaveJsonCallback) Method

Summary

Saves the contents of the DICOM data set in the DICOM JSON model format (specified in PS3.18) to the specified output file.

Syntax

C#
VB
C++
[ExtensionAttribute()] 
public static void SaveJson( 
   DicomDataSet ds, 
   string fileName, 
   DicomDataSetSaveJsonFlags jsonFlags, 
   SaveJsonCallback cb 
) 
<ExtensionAttribute()> 
Public Overloads Shared Sub SaveJson( _ 
   ByVal ds As Leadtools.Dicom.DicomDataSet, _ 
   ByVal fileName As String, _ 
   ByVal jsonFlags As Leadtools.Dicom.Common.Extensions.DicomDataSetSaveJsonFlags, _ 
   ByVal cb As Leadtools.Dicom.Common.Extensions.SaveJsonCallback _ 
)  

Parameters

ds
The contents of this data set to be saved

fileName
The name of the output JSON file.

jsonFlags
Flags that affect how binary data and other information is saved in the JSON output file.

cb
Optional callback that allows you to change the element names, attributes, and values of the JSON output file.

Remarks

Use this method to export a DicomDataSet as a human-readable JSON file. By default, all binary data is using BulkDataUri with dummy URIs, but this behavior can be modified by passing appropriate DicomDataSetSaveJsonFlags

The output JSON format is the DICOM JSON Model defined in the DICOM specification in PS3.18.F.

Note: When saving the pixel data of multi-page compressed files to JSON, only the first frame is saved. This is because of the restriction specified in PS3.18.F.2.7 that states "There is a single InlineBinary value representing the entire Value Field, and not one per Value".

Example

For an example, refer to SaveJsonCallback.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom.Common Assembly