Hi,
I’m unable to find the IsLicensed property suggested by this page:
A code snippet is below, it works down to the test for islicensed:
String imaging_licence_file = @“C:\Program Files (x86)\Aspose\Aspose.Imaging for .NET\Aspose.Imaging.lic”;
Aspose.Imaging.License imaging_licence = new Aspose.Imaging.License();
if (!File.Exists(imaging_licence_file))
{
throw new FileNotFoundException(“Unable to find imaging license file”);
}
imaging_licence.SetLicense(imaging_licence_file);
if (imaging_license.IsLicensed)
{
// carry on with program
}
else
{
// terminate program
}