TIFF to PDF with Multi-Page Support
IronPDF's powerful conversion features include the ability to convert multi-paged TIFF (Tagged Image File Format) files into PDF documents through the ImageToPdfConverter.ImageToPdf
method. Due to its high-quality conversions, IronPDF ensures that the final PDF will reflect the content from that original TIFF file in a high-quality file format.
Two Easy Steps to Convert TIFF to PDF
Here is a simple code example to demonstrate converting a multi-page TIFF file to a PDF document:
Explanation
Convert the TIFF File to PDF: The first step to converting your TIFF files to PDF is to pass the TIFF file itself to the
ImageToPdfConverter.ImageToPdf
method. TheImageToPdfConverter
class is used to convert image file formats to PDF documents and provides access to the method needed to carry this out,ImageToPdf
. This class accepts a range of image file types and Bitmap objects and is capable of converting them all to PDF in just a couple of lines of code, and will handle the conversion of the TIFF file to PDF with ease, whether it's a single-paged PDF or multi-paged.- Save the PDF Document: Once the TIFF file has been converted to a PDF, we store the newly created PDF document in a
PdfDocument
object named pdf. Our next, and final, step is to save this PDF document. Using theSaveAs
method, we specify the file path where we want to save the PDF.
Unlock the full potential of ImageToPdfConverter with our detailed API documentation!