Barcode & Bankcard
Accura Scan’s solution scans and extracts data from Barcodes as well as Bank cards.
Barcode
The method use to Start Barcode scanning is
accura.startBarcode(accuraConfs, barcodeType, function (results), function (error));Parameters:
Response:
The example function is shown below
function startBarcode() {
var accuraConfs = {};
accura.startBarcode(accuraConfs, barcodeSelected, function (results) {
//Result from the SDK
}, function (error){
alert(error);
})
}Bankcard
The method use to Start Bankcard scanning is
Parameters:
Response:
Example function:
Last updated