| - // Create a new PDF document
- Document pdfDocument = new Document();
- // List of JPG image files
- string[] jpgFiles = { "image1.jpg", "image2.jpg", "image3.jpg" };
- // Add each JPG file to the PDF
- foreach (string imagePath in jpgFiles)
- {
- // Add a page to the document
- Page page = pdfDocument.Pages.Add();
- // Create an Image object
- Image image = new Image();
- image.File = imagePath;
- // Add JPG image to the page's Paragraphs collection
- page.Paragraphs.Add(image);
- }
- // Save the document
- pdfDocument.Save("merged.pdf");
复制代码 |