DICOM Reading in VB.NET

Comprehensive VB.NET Codes for DICOM Reading within .NET Imaging SDK

Developed for medical image reading and processing, RasterEdge DICOM add-on provides multiple options for a better performance:
DICOM Reading
Here is a detailed VB.NET sample for decoding DICOM images and metadata with RasterEdge .NET Imaging SDK and DICOM Add-on. (For C#.NET developers, please go to DICOM Reading for C#.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.)
Imports System.IO
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing
Imports RasterEdge.Imaging.Dicom

Create Dataset

RasterEdge provide detailed VB.NET codes to create DICOM Dataset:
Overloads Public Sub Initialize(ByVal classType As DicomClassType, ByVal type As DicomDataSetInitializeType)

Create Dataset

Loads a Data Set from a disk file with the following VB.NET codes:
Overloads Public Overridable Sub Load(ByVal name As String, ByVal flags As DicomDataSetLoadFlags)

Saves Data Set

You may save the Data Set to the specified file with the following VB.NET codes:
Overloads Public Sub Save(ByVal name As String, ByVal flags As DicomDataSetSaveFlags)

Create DICOM Directories

Using VB.NET codes to create DICOM Directories for DICOM File-sets if you need one:

Public Class DicomDir
Implements System.IDisposable

Load DICOM Directories

Loads the DICOM Directory Data Set from the specified file with the following VB.NET codes:
Public Sub Load(ByVal name As String, ByVal flags As DicomDataSetLoadFlags)

Save DICOM Directories

You may copy the following VB.NET codes to stores the DICOM Directory:
Public Sub Save()
More Tutorials!
Find more user guides with RasteEdge .NET Image SDK using VB.NETsample codings!
Want to install Imaging SDK in Winforms or Web applications, please go to Use Imaging SDK in Winforms and Web Document Image Viewer.