Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.3.28
|
Leadtools.Dicom.Common.Extensions Namespace > DicomExtensions Class > LoadXml Method : LoadXml(DicomDataSet,Stream,DicomDataSetLoadXmlFlags,LoadXmlBeforeElementCallback,LoadXmlAfterElementCallback) Method |
[ExtensionAttribute()] public static void LoadXml( DicomDataSet ds, Stream stream, DicomDataSetLoadXmlFlags xmlFlags, LoadXmlBeforeElementCallback cbBefore, LoadXmlAfterElementCallback cbAfter )
'Declaration
<ExtensionAttribute()> Public Overloads Shared Sub LoadXml( _ ByVal ds As DicomDataSet, _ ByVal stream As Stream, _ ByVal xmlFlags As DicomDataSetLoadXmlFlags, _ ByVal cbBefore As LoadXmlBeforeElementCallback, _ ByVal cbAfter As LoadXmlAfterElementCallback _ )
'Usage
Dim ds As DicomDataSet Dim stream As Stream Dim xmlFlags As DicomDataSetLoadXmlFlags Dim cbBefore As LoadXmlBeforeElementCallback Dim cbAfter As LoadXmlAfterElementCallback DicomExtensions.LoadXml(ds, stream, xmlFlags, cbBefore, cbAfter)
[ExtensionAttribute()] public: static void LoadXml( DicomDataSet^ ds, Stream^ stream, DicomDataSetLoadXmlFlags xmlFlags, LoadXmlBeforeElementCallback^ cbBefore, LoadXmlAfterElementCallback^ cbAfter )
Use this method to read the contents of a DICOM XML file. The DICOM XML file can be created using SaveXml By default, all binary data is read from the DICOM input XML file, but this behavior can be modified by passing appropriate DicomDataSetLoadXmlFlags
The way that this method processes the input XML file elements, attributes, and element values can be customized by passing the optional LoadXmlBeforeElementCallback delegate. For more information on this, see the documentation and example for LoadXmlBeforeElementCallback. The DicomElement themselves can be modified after they have been added to the DicomDataSet by passing the optional LoadXmlAfterElementCallback delegate. For more information on this, see the documentation and example for LoadXmlAfterElementCallback.
This example loads a sample DICOM data set, saves it as XML to a memory stream (with no binary data), displays the memory stream, reloads the XML stream into a DicomDataSet object, and saves the DicomDataSet object as a DICOM file
Imports Leadtools.Dicom Imports Leadtools.Dicom.Common Imports Leadtools.Dicom.Common.Extensions Imports Leadtools.Dicom.Common.Linq Imports Leadtools.Dicom.Common.Linq.BasicDirectory Imports Leadtools Imports Leadtools.Dicom.Common.DataTypes <TestMethod()> _ Public Sub LoadXmlExample2() Dim dicomFileNameIn As String = Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm") Dim xmlFileNameOut As String = Path.Combine(LEAD_VARS.ImagesDir, "test.xml") ' Initialize DICOM engine DicomEngine.Startup() Dim ds As DicomDataSet = New DicomDataSet() ' Load an existing DICOM file ds.Load(dicomFileNameIn, DicomDataSetLoadFlags.None) ' Save as XML with no binary data ' For the demo, keep the XML output file size small by skipping the pixel data Dim xmlFlags As DicomDataSetSaveXmlFlags = DicomDataSetSaveXmlFlags.IgnoreBinaryData Or DicomDataSetSaveXmlFlags.TrimWhiteSpace Or DicomDataSetSaveXmlFlags.TagWithCommas ds.SaveXml(xmlFileNameOut, xmlFlags) ' Now reload the XML file. ' Note that there will not be an image because we skipped the pixel data in the save ds.LoadXml(xmlFileNameOut, DicomDataSetLoadXmlFlags.None) DicomEngine.Shutdown() End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
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; [TestMethod] public void LoadXmlExample2() { string dicomFileNameIn = Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm"); string dicomFileNameOut = Path.Combine(LEAD_VARS.ImagesDir, "test.dcm"); // Initialize DICOM engine DicomEngine.Startup(); DicomDataSet ds = new DicomDataSet(); // Load an existing DICOM file ds.Load(dicomFileNameIn, DicomDataSetLoadFlags.None); // Save as XML to a stream with no binary data // For the demo, keep the XML output file size small by skipping the pixel data DicomDataSetSaveXmlFlags xmlFlags = DicomDataSetSaveXmlFlags.IgnoreBinaryData | DicomDataSetSaveXmlFlags.TrimWhiteSpace | DicomDataSetSaveXmlFlags.TagWithCommas; Stream stream = new MemoryStream(); ds.SaveXml(stream, xmlFlags); // Display contents of stream stream.Flush(); stream.Position = 0; StreamReader sr = new StreamReader(stream); string xmlString = sr.ReadToEnd(); MessageBox.Show(xmlString, "xml version of " + dicomFileNameIn); // Now reload the XML file from the stream. // Note that there will not be an image because we skipped the pixel data in the save stream.Seek(0, SeekOrigin.Begin); //stream.Position = 0; ds.LoadXml(stream, DicomDataSetLoadXmlFlags.None); ds.Save(dicomFileNameOut, DicomDataSetSaveFlags.None); DicomEngine.Shutdown(); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
DicomExtensions Class
DicomExtensions Members
Overload List
LoadXml(DicomDataSet,String,DicomDataSetLoadXmlFlags,LoadXmlBeforeElementCallback,LoadXmlAfterElementCallback) Method
LoadXml(DicomDataSet,Stream,DicomDataSetLoadXmlFlags,LoadXmlBeforeElementCallback,LoadXmlAfterElementCallback) Method
LoadXml(DicomDataSet,String,DicomDataSetLoadXmlFlags) Method
LoadXml(DicomDataSet,Stream,DicomDataSetLoadXmlFlags) Method
SaveXml(DicomDataSet,String,DicomDataSetSaveXmlFlags,SaveXmlCallback) Method
SaveXml(DicomDataSet,Stream,DicomDataSetSaveXmlFlags,SaveXmlCallback) Method
SaveXml(DicomDataSet,String,DicomDataSetSaveXmlFlags) Method
SaveXml(DicomDataSet,Stream,DicomDataSetSaveXmlFlags) Method
SaveXmlCallback Delegate
LoadXmlBeforeElementCallback Delegate
LoadXmlAfterElementCallback Delegate