@@ -34,11 +34,11 @@ The following code snippets are using the public trial license to initialize the
3434>
3535> 1 .
3636``` javascript
37- Dynamsoft .DLR . LabelRecognizer . license = " DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9 " ;
37+ Dynamsoft .License . LicenseManager . initLicense ( " YOUR-LICENSE-KEY " ) ;
3838```
39392 .
4040``` java
41- LabelRecognizer . initLicense(" DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9 " , new DLRLicenseVerificationListener () {
41+ LabelRecognizer . initLicense(" YOUR-LICENSE-KEY " , new DLRLicenseVerificationListener () {
4242 @Override
4343 public void DLRLicenseVerificationCallback (boolean b , Exception e ) {
4444 if (! b && e != null ){
@@ -49,7 +49,7 @@ LabelRecognizer.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", new DLRL
4949```
50503 .
5151``` objc
52- [DynamsoftLabelRecognizer initLicense: @"DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9 " verificationDelegate: self ] ;
52+ [DynamsoftLabelRecognizer initLicense: @"YOUR-LICENSE-KEY " verificationDelegate: self ] ;
5353- (void)DLRLicenseVerificationCallback:(bool)isSuccess error:(NSError * )error{
5454 if(!isSuccess && error != nil){
5555 NSString* msg = error.userInfo[ NSUnderlyingErrorKey] ;
@@ -59,7 +59,7 @@ LabelRecognizer.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", new DLRL
5959```
60604.
6161```swift
62- DynamsoftLabelRecognizer.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9 ",verificationDelegate:self)
62+ DynamsoftLabelRecognizer.initLicense("YOUR-LICENSE-KEY ",verificationDelegate:self)
6363func dlrLicenseVerificationCallback(_ isSuccess: Bool, error: Error?) {
6464 if(!isSuccess && error != nil){
6565 let err = error as NSError?
@@ -71,19 +71,19 @@ func dlrLicenseVerificationCallback(_ isSuccess: Bool, error: Error?) {
71715 .
7272``` c
7373char errorMessage[256 ];
74- DLR_InitLicense ("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9 ", errorMessage, 256);
74+ DLR_InitLicense ("YOUR-LICENSE-KEY ", errorMessage, 256);
7575```
76766.
7777```cpp
7878char errorMessage[256];
79- CLabelRecognizer::InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9 ", errorMessage, 256);
79+ CLabelRecognizer::InitLicense("YOUR-LICENSE-KEY ", errorMessage, 256);
8080```
81817 .
8282``` csharp
83- LabelRecognizer .InitLicense (" DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9 " );
83+ LabelRecognizer .InitLicense (" YOUR-LICENSE-KEY " );
8484```
85858 .
8686``` java
87- LabelRecognizer . initLicense(" DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwNSJ9 " );
87+ LabelRecognizer . initLicense(" YOUR-LICENSE-KEY " );
8888```
8989
0 commit comments