Visual C#.NET: Convert PDF to TIFF

How to convert PDF to TIFF using C#.NET
In some situation, using e-faxing for instance, users may need to convert PDF files to TIFF format. Yiigo.Image for .NET automatically detects PDF file pages and convert them to TIFF image (one image per page). Find more PDF conversion information on Yiigo.Imaging for .NET PDF Plugin.
Yiigo.Image for .NET PDF Plugin has those following functionalities:
This document provides comprehensive Visual C#.NET samples for guiding developers to convert PDF to TIFF using Yiigo.Image for .NET. Find more PDF conversion tutorials on VB.NET PDF Conversion to TIFF, Web Imaging Viewer PDF to TIFF Conversion Support and Convert PDF to TIFF in .NET Winforms.
PDF Converting to TIFF with C#.NET Sample Code

Requirements

If you want to convert PDF to TIFF in Visual C#.NET, make sure that you have installed.

Start to Convert

  • Open and run your Microsoft Visual Studio;
  • Choose either "Visual C# Projects" in "New Project" dialog box;
  • Choose "Windows Application" in the "Templates" List and name it "YiigoImagingPdfConvertTIFFCsharp";
  • Right-click on the "References" folder, and select "Add Reference..." from the context menu in the "Solution Explorer" window;
  • In the "Add Reference" dialog box, select the ".NET" tab and browse to Yiigo.Imaging.Net.dll library and Yiigo.Imaging.Net.Pdf.Read.dll;
  • Add it to your Visual C# applications;
  • Call Yiigo .NET Image Namespace & Copy those following codes:
using System.IO;
using System.Drawing.Printing;
using Yiigo.Imaging;
using Yiigo.Imaging.Processing;
using Yiigo.Imaging.Conversion;

using YiigoImage Image = new YiigoImage();
// Convert TIFF to PDF documents
public void ConversionTIFFtoPdf();
{
string TIFFFileName = (@"C:\ yiigo_example.tif");
ImageFormat ImageFormat = ImageFormat.pdf;
}
public Image ConversionPdftoTIFF(@"C:\ yiigo_example.tif", ImageFormat.pdf);
doc.Save(@"C:\ yiigo_example.pdf");

// Convert PDF documents to TIFF
public Image ConversionPdftoTIFF();
{
string PdfFileName = (@"C:\ yiigo_example.pdf");
int PdfPageNumber = "1";
ImageFormat ImageFormat = ImageFormat.tif;
}
public void ConversionTIFFtoPdf(@"C:\ yiigo_example.pdf", "1", ImageFormat.tif);
doc.Save(@"C:\ yiigo_example.tif");
Products
Other Plugins
Image Viewer CoreBarcode PluginPDF Read & WriteTesseract OCR PluginForm Processing PluginJBIG2 CodecJPEG2000 CodecISIS ScannerTwain ScannerDICOM ReaderCAD Scanner