Convert and merge multple TIFFs to PDF

154 views
Skip to first unread message

Support

unread,
Jun 28, 2012, 2:04:06 PM6/28/12
to pdfne...@googlegroups.com
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);

}

Reply all
Reply to author
Forward
0 new messages