pq scan
Question:
Hi,I have a range of multiple pages tiff images, and I need add all of them into a new PDF document. Can your library do this for me? Looking forward to response from you.
---- Martin
Hi,I have a range of multiple pages tiff images, and I need add all of them into a new PDF document. Can your library do this for me? Looking forward to response from you.
---- Martin
Hi, Martin.
If you want to convert several multi-page tiff images to one PDF document, of course, pqScan .NET Image to PDF SDK can help you.
The following C# code shows how to translate tiff images and merge them to a PDF file.
using System; using System.Collections.Generic; using System.Drawing; using PQScan.ImageToPDF; namespace ImageToPDFQuestion { class Program { static void Main(string[] args) { //create a PDF converter object. PDFConverter pdfConverter = new PDFConverter(); //add all multi-page tiff image to translate list. List<string> tifImages = new List<string>(); tifImages.Add("multile-page-img1.tif"); tifImages.Add("multile-page-img2.tif"); tifImages.Add("multile-page-img2.tif"); //set output pdf file name. string fileName = "result.pdf"; //convert tiff images to a new PDF document. pdfConverter.CreatePDF(tifImages.ToArray(), fileName); } } }
Hope the C# code can be helpful.
---- pqScan Support Team
Copyright © pqScan 2010-2023. All Rights Reserved.