GroupDocs.Merger is not merging more than 2 documents in .Net application

I have GroupDocs.Merger license for .Net but its failing after to merger more than two documents.

@srastogi05

Could you please send the license file via a private message? Additionally, could you specify the API version you’re using and share the merger code along with the source files?

Hi Atir,

Please find the attached license file. API version is 24.3.0.0

Attached is the code file where I use groupdocs.merger

License code

License license = new License();

license.SetLicense(licensePath);

Merger code

using (Merger merger = new Merger(finalTiffPath))

{

merger.Join(currentTiffPath);

// Merge TIF files and save result

merger.Save(mergedTiffPath);

finalTiffPath = mergedTiffPath;

}

Thanks & Regards

Shivi Rastogi

Applications Developer

Teams: +1 630-481-7966

E: srastogi@heniff.com

~WRD0000.jpg (357 Bytes)

(Attachment GroupDocs.Merger.NET.lic is missing)

(Attachment PaycheckPdfController.cs is missing)

Hello Atir,

I sent the attachments, but they failed to send over due to format not supported. How can I send the attachments to you? Can you send your work email address on which I can send the attachments?

Thanks & Regards

Shivi Rastogi

Applications Developer

Teams: +1 630-481-7966

E: srastogi@heniff.com

@srastogi05

Please send license and source file(s) at atir.tahir@aspose.com.

@srastogi05

Please take a look at this output.zip (1.8 MB). We could successfully merge multiple (3) TIF files using latest API version and the license you shared with us.

Can you please share code to load the license file in C#

@srastogi05

Please take a look at this documentation article - [Setting license from file](Licensing and Subscription | Documentation or the code below:

// Setup license.
License license = new License();
license.SetLicense(licensePath);