Convert and merge multple TIFFs to PDF

Q:

Do you guys have a utility that can take multiple TIFFs and combine them into a PDF? It would seem that this could be done efficiently but other sowtware is awfully slow in doing this.

A:

You could PDFNet SDK with Convert Add-on as follows:

// C# code snippet used to merge a number of image files (including tif) into a PDF.

using (pdftron.PDF.PDFDoc pdfdoc = new PDFDoc())

{

pdftron.PDF.Convert.ToPdf(pdfdoc, “my.tif”);

pdftron.PDF.Convert.ToPdf(pdfdoc, “my.jpg”);

pdftron.PDF.Convert.ToPdf(pdfdoc, “my.png”);

pdftron.PDF.Convert.ToPdf(pdfdoc, "my_multipage.tif ");

pdfdoc.Save(“merged.pdf”, SDFDoc.SaveOptions.e_linearized);

}