Hi,
I have a valid license and I am setting it in my application as follow but I am still getting evaluation messages in generated files. License file is placed along with Aspose.Pdf binary and setting it like this,
Dim license As Aspose.Pdf.License = New Aspose.Pdf.License
license.SetLicense(“Aspose.Pdf.lic”)
Dim resolution As New Aspose.Pdf.Devices.Resolution(300)
Dim document As New Aspose.Pdf.Document(ms, True)
Dim pngdev As New Pdf.Devices.PngDevice(resolution)
For pagenum As Integer = 1 To document.Pages.Count
Dim pn As MemoryStream = New MemoryStream()
pngdev.Process(document.Pages(pagenum), pn) ret.Add(pn.ToArray)
pngdev.Process(document.Pages(1), “d:\test.png”)
Next pagenum
My license file’s subcription expiration date is 11-14-2014 where as product tag contains Aspose.Pdf for .NET.
Please help in this regard. Thanks