Hello,
I used to run Aspose.PDF in Epicor Kinetic without watermarks, activating the license like this:
var license = new Aspose.Pdf.License();
var assembly = System.Reflection.Assembly.Load(“Ice.Lib.PDF”);
After some environment updates, it now always goes into evaluation mode and generated PDFs have watermarks.
PDF generation code looks like this:
using (var finalPdf = new Aspose.Pdf.Document())
{
// Add pages from existing PDFs
finalPdf.Save(resultStream);
}
Questions:
Has anyone seen Aspose.PDF enter evaluation mode in Epicor after internal library updates?
Is there a new way to activate the license with embedded Ice.Lib.PDF?
Any guidance would be appreciated.