сканер штрих-кода вместе с предварительным просмотром камеры Cordova - PullRequest
0 голосов
/ 01 марта 2019

Как использовать плагин сканера штрих-кода phonegap вместе с cordova-plugin-camera-preview, чтобы при нажатии кнопки сканирования в моем угловом приложении камера просматривала внутри моего приложения, сканировала штрих-код и давала мне результат

1 Ответ

0 голосов
/ 02 марта 2019

Вы усложняете для себя

Плагин сканера штрих-кода, который

https://github.com/phonegap/phonegap-plugin-barcodescanner

У упомянутого выше сканера штрих-кода уже естьДля доступа к камере вам не нужно использовать другой плагин, подобный тому, который вы упомянули в плагине предварительного просмотра камеры для cordova

Пример:

//plugin options
var options= {
      preferFrontCamera : true, // iOS and Android
      showFlipCameraButton : true, // iOS and Android
      showTorchButton : true, // iOS and Android
      torchOn: true, // Android, launch with the torch switched on (if available)
      saveHistory: true, // Android, save scan history (default false)
      prompt : "Place a barcode inside the scan area", // Android
      resultDisplayDuration: 500, // Android, display scanned text for X ms. 0 suppresses it entirely, default 1500
      formats : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED
      orientation : "landscape", // Android only (portrait|landscape), default unset so it rotates with the device
      disableAnimations : true, // iOS
      disableSuccessBeep: false // iOS and Android
  }

 //success callback
function onSuccess(result) {
      alert("We got a barcode\n" +
            "Result: " + result.text + "\n" +
            "Format: " + result.format + "\n" +
            "Cancelled: " + result.cancelled);
 }

//error callback
function onError(error) {
      alert("Scanning failed: " + error);
}

cordova.plugins.barcodeScanner.scan(onSuccess, onError, options); 
...