EVO HTML to PDF Converter allows you to merge a set of PDF documents into another PDF document. The methods of the EvoPdfClientDocument class you can use to merge PDF documents are DocumentAppendDocument(String) and DocumentInsertDocument(Int32, String).
Code Sample - Merge PDF Documents
C#
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Hosting; // Use EVO PDF Namespace using EvoPdfClient; namespace EvoHtmlToPdfDemo.Controllers.PDF_Editor { public class PDF_Editor_Merge_PDFController : Controller { private readonly Microsoft.AspNetCore.Hosting.IWebHostEnvironment m_hostingEnvironment; public PDF_Editor_Merge_PDFController(IWebHostEnvironment hostingEnvironment) { m_hostingEnvironment = hostingEnvironment; } private void SetCurrentViewData() { ViewData["ContentRootPath"] = m_hostingEnvironment.ContentRootPath + "/wwwroot"; HttpRequest request = this.ControllerContext.HttpContext.Request; UriBuilder uriBuilder = new UriBuilder(); uriBuilder.Scheme = request.Scheme; uriBuilder.Host = request.Host.Host; if (request.Host.Port != null) uriBuilder.Port = (int)request.Host.Port; uriBuilder.Path = request.PathBase.ToString() + request.Path.ToString(); uriBuilder.Query = request.QueryString.ToString(); ViewData["CurrentPageUrl"] = uriBuilder.Uri.AbsoluteUri; } // GET: PDF_Editor_Merge_PDF public ActionResult Index() { SetCurrentViewData(); return View(); } [HttpPost] public ActionResult MergePdf(IFormCollection collection) { // Get the server options string serverIP = collection["textBoxServerIP"]; uint serverPort = uint.Parse(collection["textBoxServerPort"]); string servicePassword = collection["textBoxServicePassword"]; bool useServicePassword = servicePassword.Length > 0; bool useTcpService = collection["ServerType"] == "radioButtonUseTcpService"; string webServiceUrl = collection["textBoxWebServiceUrl"]; // Create the merge result PDF document Document mergeResultPdfDocument = null; if (useTcpService) mergeResultPdfDocument = new Document(serverIP, serverPort); else mergeResultPdfDocument = new Document(true, webServiceUrl); // Set optional service password if (useServicePassword) mergeResultPdfDocument.ServicePassword = servicePassword; // Set license key received after purchase to use the converter in licensed mode // Leave it not set to use the converter in demo mode mergeResultPdfDocument.LicenseKey = "4W9+bn19bn5ue2B+bn1/YH98YHd3d3c="; // Load the first PDF document to merge string firstPdfFilePath = m_hostingEnvironment.ContentRootPath + "/wwwroot" + "/DemoAppFiles/Input/PDF_Files/Merge_Before_Conversion.pdf"; // Merge the first PDF document mergeResultPdfDocument.AppendDocument(firstPdfFilePath); // Load the second PDF document to merge string secondPdfFilePath = m_hostingEnvironment.ContentRootPath + "/wwwroot" + "/DemoAppFiles/Input/PDF_Files/Merge_After_Conversion.pdf"; // Merge the second PDF document mergeResultPdfDocument.AppendDocument(secondPdfFilePath); // Save the merge result PDF document in a memory buffer byte[] outPdfBuffer = mergeResultPdfDocument.Save(); // Send the PDF file to browser FileResult fileResult = new FileContentResult(outPdfBuffer, "application/pdf"); fileResult.FileDownloadName = "Merge_PDF.pdf"; return fileResult; } } }