PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
If you haven't obtained a license key yet, please refer to How to Obtain a License Key.
After obtaining the license key, apply it to your project according to the following steps.
XML file containing the license key.XML file.Offline License:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<license version="1">
<platform>windows</platform>
<starttime>xxxxxxxx</starttime>
<endtime>xxxxxxxx</endtime>
<key>LICENSE_KEY</key>
</license><key>LICENSE_KEY</key> field.You can authenticate in the following way:
public static bool LicenseVerify()
{
if (!CPDFGeneration.LoadNativeLibrary())
return false;
LicenseErrorCode errorCode = CPDFGeneration.LicenseVerify("Input your license here");
return (verifyResult == LicenseErrorCode.LICENSE_SUCCESS);
}