With the User License (Platinum) deployment model, a single License Key is generated for each ImageGear-based solution and is used to initialize the ImageGear core component using the ImageGear product licensing API. No further actions are required to license your application on the end user's system. The User model includes both concurrent user and named user methods. Distribution is per Accusoft Corporation's agreement for quarterly reporting (LDR).
This section specifies the steps you need to follow to properly license and install your end product on the end users machine when deploying your product to a client machine.
With the User License model, no Licensing Component is required. Accusoft Corporation will email the necessary parameters to you: Solution Name, Solution Key, and License Key for the deployment of your application. Using these parameters, you can then modify the code of your application to specify the Solution Name, Solution Key, and License Key using the following ImageGear API:
- To specify the Solution Name, you call ImGearLicense.SetSolutionName Method.
![]() |
When you are ready to deploy your ImageGear-based application, you need to replace the generic solution name that you have used with the ImageGear evaluation and development licenses with the unique solution name assigned to your application by Accusoft Corporation. |
- To specify the Solution Key, you call ImGearLicense.SetSolutionKey Method.
- To specify the License Key for your application, you call ImGearLicense.SetOEMLicenseKey Method.
You will also need to use the Deployment Packaging Wizard to package the ImageGear runtime components required for your application.
C# .NET | ![]() |
---|---|
ImGearLicense.SetSolutionName("YourSolutionName"); ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345); ImGearLicense.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation..."); |
VB .NET | ![]() |
---|---|
ImGearLicense.SetSolutionName("YourSolutionName") ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345) ImGearLicense.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation...") |