Resource Base
Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
Function | Description |
---|---|
DBR_CreateInstance |
Creates an instance of Dynamsoft Barcode Reader. |
DBR_DestroyInstance |
Destroys the instance of Dynamsoft Barcode Reader. |
Creates an instance of Dynamsoft Barcode Reader.
DBR_API void* DBR_CreateInstance ()
Return Value
Returns an instance of Dynamsoft Barcode Reader. If failed, returns NULL
.
Code Snippet
void* barcodeReader = DBR_CreateInstance();
DBR_InitLicense(barcodeReader, "t0260NwAAAHV***************");
DBR_DestroyInstance(barcodeReader);
Remarks
Partial of the decoding result will be masked with “*” without a valid license key.
Destroys an instance of Dynamsoft Barcode Reader.
DBR_API void DBR_DestroyInstance (void* barcodeReader)
Parameters
[in] barcodeReader
Handle of the barcode reader instance.
Code Snippet
void* barcodeReader = DBR_CreateInstance();
DBR_InitLicense(barcodeReader, "t0260NwAAAHV***************");
DBR_DestroyInstance(barcodeReader);
latest version