Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
Method | Description |
---|---|
init_license |
Reads product key and activates the SDK. |
init_license_from_server |
Initializes license and connect to the specified server for online verification. |
init_license_from_license_content |
Initializes barcode reader license and connects to the specified server for online verification. |
output_license_to_string |
Outputs the license content as an encrypted string from the license server to be used for offline license verification. |
init_lts_connection_parameters |
Initializes a DMLTSConnectionParameters struct with default values. |
init_license_from_lts |
Initializes the barcode reader license and connects to the specified server for online verification. |
Reads product key and activates the SDK.
BarcodeReader.init_license(dbr_license)
[in] dbr_license
<str> : The product keys.
error
<tuple> : error_code = error[0], error_message = error[1], if error_code != EnumErrorCode.DBR_OK, you can get the detailed error message by error_message.
Initialize the license and connect to the specified server for online verification.
BarcodeReader.init_license_from_server(license_server, license_key)
[in] license_server
<str> : The name/IP of the license server.[in] license_key
<str> : The license key of Barcode Reader.error
<tuple> : error_code = error[0], error_message = error[1], if error_code != EnumErrorCode.DBR_OK, you can get the detailed error message by error_message.
Initializes barcode reader license from the license content on the client machine for offline verification.
BarcodeReader.init_license_from_license_content(license_key, license_content)
[in] license_key
<str> : The license key of Barcode Reader.
[in] license_content
<str> : An encrypted string representing the license content (runtime number, expiry date, barcode type, etc.) obtained from the method output_license_to_string().
error
<tuple> : error_code = error[0], error_message = error[1], if error_code != EnumErrorCode.DBR_OK, you can get the detailed error message by error_message.
Outputs the license content as an encrypted string from the license server to be used for offline license verification.
BarcodeReader.output_license_to_string()
license_string
<str> : An encrypted string which stores the content of license.
BarcodeReaderError
: If error happens, this function will throw a BarcodeReaderError exception that can report the detailed error message.
Initializes a DMLTSConnectionParameters struct with default values.
BarcodeReader.init_lts_connection_parameters()
DMLTSConnectionParameters
<class DMLTSConnectionParameters> : A DMLTSConnectionParameters struct with default values.
Initializes the barcode reader license and connects to the specified server for online verification.
BarcodeReader.init_license_from_lts(lts_connection_parameters)
[in] lts_connection_parameters
<class DMLTSConnectionParameters> : The struct DMLTSConnectionParameters with customized settings.error
<tuple> : error_code = error[0], error_message = error[1], if error_code != EnumErrorCode.DBR_OK, you can get the detailed error message by error_message.
version 8.2.0