DICOM Reading in C#.NET

Comprehensive Visual C# Codes for DICOM Reading within .NET Imaging SDK

DICOM Add-on developed by RasterEdge is a great component for creating medical image applications and viewing, reading & annotating DICOM images with flexible functions provided.
DICOM Reading
This guide tells users how to decode DICOM images and metadata with RasterEdge .NET Imaging SDK and DICOM plug-in using Visual C# sample codes. (For VB.NET developers, please go to DICOM Reading for VB.NET. Want to view Image and document in Winforms or Web applications, please go to Read DICOM Images in Winforms and Web Document Image DICOM Reading.)
using System.IO;
using System.Drawing.Printing;
using RasterEdge.Imaging;
using RasterEdge.Imaging.Processing;
using RasterEdge.Imaging.Dicom;

Create Dataset

The following code shows how to create the Data Set object and insert the appropriate elements for the specified class
public void Initialize(DicomClassType classType, DicomDataSetInitializeType type);

Create Dataset

The following code shows how to load a Data Set from a disk file:
public virtual void Load(string name, DicomDataSetLoadFlags flags);

Saves Data Set

The following code shows how to save the Data Set to the specified file:
public void Save(string name, DicomDataSetSaveFlags flags);

Create DICOM Directories

The following code shows how to streamline the process of creating DICOM Directories for DICOM File-sets:
public class DicomDir : System.IDisposable ;

Load DICOM Directories

The following code shows how to load the DICOM Directory Data Set from the specified file:
public void Load(string name, DicomDataSetLoadFlags flags);

Save DICOM Directories

The following code shows how to create the DICOMDIR File and stores the DICOM Directory information in it
Public void Save();
More Tutorials!
Find more user guides with RasteEdge .NET Image SDK using Visual C# sample codings!
Want to install Imaging SDK in Winforms or Web applications, please go to Use Imaging SDK in Winforms and Web Document Image Viewer.