How to Convert PDF to TIFF using C#

In this how-to tutorial, we walk you through the complete procedure to convert PDF to TIFF using C#. This article uses one of the popular document conversion library for doing the document transformation from one format to another. Further, it provides a sample code to save PDF as TIFF in C# that can be used on any operating system like MS Windows, Linux, and Mac OS.

Steps to Convert PDF to TIFF using C#

  1. Setup GroupDocs.Conversion for .NET package from the NuGet in the .NET application for converting PDF to TIFF
  2. Add a reference to the GroupDocs.Conversion namespace to transform PDF to TIFF
  3. Instantiate Converter class and pass PDF to its constructor
  4. Initialize ImageConvertOptions class and set convert options for customizing the output TIFF document
  5. Finally, save the converted TIFF image to the disk by calling the Convert method of the Converter class and supplying the required arguments

By following the above steps in a sequence, you can quickly create the C# convert PDF to TIFF capability. These points do not require the installation of any additional third-party tools. You just need to consume a few API calls of the document conversion library to do the document transformation into the required format.

Code to Convert PDF to TIFF using C#

In the above example, we have created the code to develop the PDF to TIFF converter C# functionality. This sample code can be further optimized by using the ImageConvertOptions object for customizing the resultant TIFF image by setting parameters such as Brightness, Contrast, Width, Height, Horizontal Resolution, Vertical Resolution, and many more. Moreover, you can easily convert PDF documents to various other image formats including PNG, JPG, GIF, BMP, SVG, and many more.

We have concentrated on the document conversion process and how to save PDF as TIFF using C# in the article. Recently, we published an article to transform TIFF to PDF in C#, have a look at how to convert TIFF to PDF using C# post for more information.

 English