Merge two pdf documnets

Hi,

We are using aspose words to convert word document to PDF document.

Later this converted PDF document to be merged with another pdf document.

Does this Aspose words will merge two pdf documents?

if not, please suggest me the suitable product for this.

@c3iapitest Currently Aspose.Words does not provide a functionality to merge PDF documents. We will consider adding such feature in future.
Currently, you can use Aspose.PDF to achieve this.
https://docs.aspose.com/pdf/net/merge-pdf-documents/

We need to purchase aspose.PDF additional license to fulfill my requirement.

@c3iapitest Yes, Aspose.PDF is a separate product and requires another license.

The issues you have found earlier (filed as WORDSNET-24246) have been fixed in this Aspose.Words for .NET 23.2 update also available on NuGet.

@c3iapitest With the latest 22.2 version of Aspose.Words you can use the following code to merge PDF documents without parsing them into Aspose.Words DOM:

Aspose.Words.Pdf2Word.FixedFormats.PdfFixedRenderer pdfFixedRenderer = new Aspose.Words.Pdf2Word.FixedFormats.PdfFixedRenderer();

using (FileStream pdf1 = File.OpenRead(@"C:\Temp\in1.pdf"))
using (FileStream pdf2 = File.OpenRead(@"C:\Temp\in2.pdf"))
{
    using (Stream resultStream = pdfFixedRenderer.MergePdf(pdf1, pdf2))
    using (FileStream resultFile = File.Create(@"C:\Temp\out.pdf"))
        resultStream.CopyTo(resultFile);
}

Starting from 23.6 version we have introduced LowCode concept in Aspose.Words. You can now use Merger class and the following code to merge PDF or other documents with only one line of code:

Aspose.Words.LowCode.Merger.Merge(@"C:\Temp\out.pdf", new string[] { @"C:\Temp\FloorPlanMer