HOWTO: Use Dicom Images with DotImage


Dicom is an add-on for DotImage (now included with DotImage Document Imaging, though the article still applies for adding the decoder) The add-on provides the ability to open old and new style DICOM formats. To add Dicom decoding to DotImage's Open() methods register the DicomDecoder:

C#

static ClassName()
{
    RegisteredDecoders.Decoders.Add(new DicomDecoder());
}

VB.NET

 
Shared Sub New()
    RegisteredDecoders.Decoders.Add(New DicomDecoder())
End Sub

You may find our DicomLeveling and/or DicomViewer sample apps helpful.

Original Article:
Q10290 - HOWTO: Use Dicom Images with DotImage