-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
Hi,
I have been using this to try and scan some EAN-13 barcodes. However it does not seem to recognise it.
I have been able to scan a qr-code, so it does work. But it just cant seem to scan the bar code.
This is the image that doesn't work:

And the code:
<BlazorBarcodeScanner.ZXing.JS.BarcodeReader
ShowStart="true"
ShowReset="true"
ShowVideoDeviceList="true"
ShowToggleTorch="true"
OnBarcodeReceived="LocalReceivedBarcodeText"
OnErrorReceived="Error"/>
@code {
private void LocalReceivedBarcodeText(BarcodeReceivedEventArgs barcodeArgs)
{
string barcode = barcodeArgs.BarcodeText;
}
private void Error(ErrorReceivedEventArgs error)
{
var message = error.Message;
}
}
marcosgerene
Metadata
Metadata
Assignees
Labels
No labels
