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