Search

Atalasoft Knowledge Base

HOWTO: Use Dicom Images with DotImage

Administrator
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

Details
Last Modified: 6 Years Ago
Last Modified By: Administrator
Type: HOWTO
Article not rated yet.
Article has been viewed 650 times.
Options
Also In This Category