Table of Contents

Interface IBarcodeDetector

Namespace
ScanbotSDK.MAUI.Barcode
Assembly
ScanbotSDK.Shared.dll

This class is reponsible to detect barcodes on image files and returns the barcode.

public interface IBarcodeDetector

Methods

DetectBarcodesAsync(PlatformImage)

Search and decode specified types of bar codes on given image.

Task<BarcodeScannerResult> DetectBarcodesAsync(PlatformImage image)

Parameters

image PlatformImage

Returns

Task<BarcodeScannerResult>

DetectBarcodesAsync(PlatformImage, BarcodeScannerConfiguration)

Search and decode specified types of bar codes on given image.

Task<BarcodeScannerResult> DetectBarcodesAsync(PlatformImage image, BarcodeScannerConfiguration configuration)

Parameters

image PlatformImage
configuration BarcodeScannerConfiguration

Returns

Task<BarcodeScannerResult>

DetectBarcodesAsync(PlatformImage[], BarcodeScannerConfiguration)

Search and decode specified types of bar codes on given images.

Task<BarcodeScannerResult> DetectBarcodesAsync(PlatformImage[] images, BarcodeScannerConfiguration configuration = null)

Parameters

images PlatformImage[]
configuration BarcodeScannerConfiguration

Returns

Task<BarcodeScannerResult>