BarcodeScannerPlugin.process()

BFChainAugust 11, 2023
  • Plugin
  • BarcodeScannerPlugin
  • process
  • qr_code
Less than 1 minute

Decodes barcode data.

BarcodeScannerPlugin.process(blob, rotation, formats)

Parameters

  • blob

    The Blob object of the barcode image.

  • rotation

    Whether to rotate. Number type, default is 0. Do not set other values.

  • formats

    Describes the barcode type. Possible values are ["qr_code", "code_39", "codabar", "ean_13"].

Returns

A Promise that resolves to an array of decoded strings.

Example

import { barcodeScannerPlugin } from "@plaoc/plugins";

(async () => {
  const blob = new Blob();
  const res = await barcodeScannerPlugin.process(blob); 
})();

Platform Compatibility

Property/Method/EventAndroidiOSDesktop-DevDesktop
process

See Also

BarcodeScannerPlugin

Comments
  • Latest
  • Oldest
  • Hottest
Powered by Waline v2.13.0