C# TIFF Image Library
Convert PDF to TIFF in C#.NET


Guide for Converting PDF File to TIFF Document in C#.NET Programming






C# TIFF Imaging: PDF to TIFF Conversion



RasterEdge is dedicated to offering professional software for document and image conversion that enables C#.NET programmers to transform and convert other file formats to Tiff image/document directly and rapidly. C#.NET Tiff imaging converting SDK, RasterEdge XDoc.Tiff for .NET, can easily convert PDF document to TIFF image in C#.NET class with mature converting methods. And this is the focus of this guide page.





C# Project: DLLs for Conversion from PDF to TIFF



In order to run the following conversion code, please do as follows:





C# TIFF Imaging: PDF to TIFF Demo Without Setting Compression



To help you simply test the mature PDF-to-TIFF conversion function of XDoc.Tiff for .NET, we provide a simple conversion demo here.




// Load your PDF document.
PDFDocument doc = new PDFDocument(@"demo.pdf");
if (null == doc)
        throw new Exception("Fail to load pdf Document");

// Convert PDF to Tiff.
doc.ConvertToDocument(DocumentType.TIFF, @"output.tif");




C# TIFF Imaging: PDF to TIFF Demo With Compression



To help you simply test the mature PDF-to-TIFF conversion with customize compression function of XDoc.Tiff for .NET, we provide a simple conversion demo here.




// Load your PDF document.
            PDFDocument doc = new PDFDocument(@"C:\demo.pdf");
            if (null == doc)
                throw new Exception("Fail to load pdf Document");

            // Convert PDF to Tiff.
            doc.ConvertToDocument(DocumentType.TIFF, @"output.tif", ImageCompress.CCITT);