C# Dicom Library
C# DICOM - Install, Deploy and Distribute .NET Dicom SDK
C# Guide for How to Implement .NET Dicom SDK Installation, Deployment and Distribution
Before using .NET RasterEdge XDoc.Dicom SDK to decode, edit and convert Dicom files, you should confirm whether your application and computer development meet the requirement and then install it on your C# project.
This page will guide you to install RasterEdge Dicom tool by adding related .dll files. Now, let's see details for installing, deploying and distributing .NET Dicom SDK.
System Requirements
To use our Dicom product successfully, please firstly make sure your computer for application development is compatible with the following requirements.
Operation System: Windows XP, Windows 7 or greater
.NET Framework: .NET Framework 2.0 or greater
MemorySize: 1GB
Install DICOM SDK into Visual Studio C# Project
This section describes how to install RasterEdge XDoc.Dicom SDK for .NET into Visual Studio C# application.
Please do as follows.
Add necessary references to your C#.NET project. Right-click the project, select "Add Reference..." to locate and add the following DLLs as project references;
RasterEdge.Imaging.Basic.dll
RasterEdge.Imaging.Basic.Codec.dll
RasterEdge.Imaging.JPEG2000.dll
RasterEdge.Imaging.DICOM.dll
Use corresponding namespaces;
using RasterEdge.Imaging.Basic;
using RasterEdge.Imaging.DICOM;
Add the following C# demo code to your project.
DCMDocument doc = new DCMDocument(@"C:\demo.dcm");
doc.ConvertToImages(ImageType.PNG, @"C:\", "test");
|