How to convert a TIFF file to PDF
The code sample below creates a PDF using a tiff image. If the tiff image has multiple pages to a multi-page PDF document will be created.
C# sample:
PDFDocument MyDocument = new PDFDocument("TiffSample.pdf");
MyDocument.TiffToPDF("sample.tiff");
MyDocument.Save();