How to C#: Converter
Use Convert SDK for C#
Dicom to Tiff
Dicom to Tiff
  |  
Home ›› XDoc.Converter ›› C# Converter: Dicom to Tiff

C# Tiff Convert: How to Convert Dicom to Tiff Image File


C# Demo Code Below will Help You to Render and Convert Dicom Image to Tiff Image






XDoc.Converter for .NET is a complete file conversion library package. If you need to convert and change one image to another image in C# program, there would be no need for any third-party tools. After quick integration, various image conversion features are feasible in your application. Now, on this page, we will only talk about how to perfrom rapid conversion from Dicom image to Tiff image.




C# DLLs for DICOM Conversion to TIFF


Add necessary references to your C# project:


  RasterEdge.Imaging.Basic.dll


  RasterEdge.Imaging.Basic.Codec.dll


  RasterEdge.Imaging.DICOM.dll


  RasterEdge.Imaging.Font.dll


  RasterEdge.Imaging.Drawing.dll


  RasterEdge.Imaging.JBIG2.dll


  RasterEdge.Imaging.JPEG2000.dll


  RasterEdge.Imaging.Processing.dll


  RasterEdge.XDoc.Converter.dll


  RasterEdge.XDoc.Excel.dll


  RasterEdge.XDoc.Office.Inner.Common.dll


  RasterEdge.XDoc.Office.Inner.Office03.dll


  RasterEdge.XDoc.PDF.dll


  RasterEdge.XDoc.PowerPoint.dll


  RasterEdge.XDoc.TIFF.dll


  RasterEdge.XDoc.Word.dll


  RasterEdge.XImage.AdvancedCleanup.Core.dll


  RasterEdge.XImage.OCR.dll


  RasterEdge.XImage.OCR.Tesseract.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Use the namespaces


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.Converter;




Image Conversion in C#: Dicom to Tiff Demo



This is a C# prgoramming demo for Dicom to Tiff conversion. If you have additional programming requests, please contact us via email (support@rasteredge.com).

The following demo code will create an output .tif file with default resolution(96) and default compression(JPEG).




// Define input and output files path.
String inputFilePath = @"C:\input.dcm";
String outputFilePath = @"C:\output.tif";

// Convert Dicom to Tiff.
ConvertResult result = DocumentConverter.ToDocument(inputFilePath, outputFilePath, FileType.DOC_TIFF);





C# Sample: Converting DICOM File to Tiff Image with Settings(Compression and Resolution)



You may directly copy and paste this PDF to Tiff conversion demo to your C# .NET program.

The following demo code will create an output .tif file with resolution(100) and compression(CCITT).




//Define the document save setting options
DocumentSaveOption option = new DocumentSaveOption(FileType.DOC_TIFF);

//set the output tiff file compression
option.CompressionMode = ImageCompress.CCITT;

//set the output tiff file resolution
option.Resolution = 200;
DocumentConverter.ToDocument(@"C:\input.dcm", @"C:\output.tif", option);