Convert TIFF to PDF
Both DynamicPDF Converter for .NET and DynamicPDF Core Suite for .NET support converting TIFF to PDFs - including support for converting multi-page TIFFs. The following C# examples illustrate.
Watch the Video
How to Convert TIFF to PDF Using DynamicPDF Core Suite
The following example illustrates convert a multi-page TIFF to a PDF using DynamicPDF Core Suite for .NET.
Steps to Convert TIFF/Multipage TIFF to PDF using Core Suite
- Create a
TiffFile
instance and in the constructor pass the path to the TIFF file. - Create a
Document
object instance from theTiffFile
instance'sGetDocument
method. - Add the
Document
instance'sDraw
method and pass the path to the PDF to create.
Sample Code - C#
TiffFile tiffFile = new TiffFile("fw9_18.tiff");
Document document = tiffFile.GetDocument();
document.Draw("core-suite-example.pdf");
How to Convert TIFF to PDF Using Converter
The following steps and C# sample code illustrate converting a TIFF to PDF using the DynamicPDF Converter for .NET.
Steps to Convert TIFF to PDF Using Converter for .NET
- Create a new
ImageConverter
object instance and in the constructor pass the path to the TIFF file. - Invoke the
Convert
method on theImageConverter
instance and specify the path to the output file.
Sample Code - C#
ImageConverter image = new ImageConverter("fw9_18.tiff");
image.Convert("converter-example.pdf");
GitHub Project
Examples are available for both DynamicPDF Core Suite and DynamicPDF Converter.
DynamicPDF Core Suite
Examples are provided in C# and VB.NET. Clone or view the example project at GitHub. This example code is contained in the following files.
- C# - TiffToPDF.cs
- VB.NET - TiffToPDF.vb
DynamicPDF Converter
Example code for DynamicPDF Converter is contained in the following files.
- C# - TiffImageConversion.cs
- VB.NET - TiffImageConversion.vb
Getting Started
Get started easily by installing DynamicPDF Core Suite for .NET through NuGet or manually. Then, refer to the documentation for more information on using and purchasing the product.
NuGet Package
DynamicPDF Core Suite is available on NuGet and is part of the ceTe.DynamicPDF.CoreSuite.NET
package. The easiest way to install the package is through the Visual Studio Package Manager. You can also download the package directly from NuGet.
DynamicPDF Core Suite for .NET Information
DynamicPDF Core Suite for .NET combines creating, merging, and visual report creation into one powerful product for creating PDF documents. It is ideal for anyone who needs to generate PDF documents or reports or work with existing PDFs in their applications. With a free Evaluation Edition to try and with flexible and royalty-free licensing options, why not start using DynamicPDF Core Suite for .NET today!
More Information on Converting Tiffs to PDFs
- DynamicPDF Core Suite for .NET
- Refer to the Tiff Images documentation topic, or
- Chapter 6, Images, in the book DynamicPDF Core Suite for .NET by Example available on GitHub.
- DynamicPDF Converter for .NET
- Refer to the Converting Images to PDFs documentation topic.
- Chapter 4, Converting Images, in the book DynamicPDF Converter for .NET by Example available on GitHub.
Available on Other Platforms
DynamicPDF Core Suite is also available for the Java and COM/ActiveX platforms. Refer to the respective product pages for more details.
- DynamicPDF Generator
- Java - DynamicPDF Generator for Java
- COM/ActiveX - DynamicPDF Generator for COM/ActiveX
- DynamicPDF Merger
- Java - DynamicPDF Merger for Java
- COM/ActiveX - DynamicPDF Merger for COM/ActiveX