Converting word, excel jpeg to PDF,

Hi Team,

We have purchased aspose.Total for PDF for one our customer ADGM, However while converting the document to PDF we are getting red colored message in the converted PDF saying you are in evaluation edition.

P.S - We are using the proper .lic file which was provided after purchasing the product.

Please help!.

Regards,
Suprith

Hi Suprith,

Thanks for contacting support.

When using more than one API in your code, you need to individually initialize the license for each API. Ensure that you are using a valid Aspose.Total license and initializing the license for each API being used for documents conversion. Please take a look over following code snippet.
[C#]

// instantiate Aspose.Pdf license object
Aspose.Pdf.License license = new Aspose.Pdf.License();
// initialize the license
license.SetLicense(@"c:/Aspose.Total.lic");
// instantiate Aspose.Cells license object
Aspose.Cells.License slidelicense = new Aspose.Cells.License();
// initialize the license
slidelicense.SetLicense(@"C:\Aspose.Total.lic");