Barcode Scanner component for Blazor using zxing-js Interop
https://sabitertan.github.io/BlazorBarcodeScanner/
Before you continue, please make sure you have the latest version of Visual Studio and .NET 6+ installed. Visit official Blazor site to learn more.
Install-Package BlazorBarcodeScanner.ZXing.JS
or
dotnet add package BlazorBarcodeScanner.ZXing.JS
Add following lines to wwwroot\index.html
(for server side _Host.cshtml
) before </body>
tag.
<script src="https://github.com/sabitertan/BlazorBarcodeScanner/raw/master/_content/BlazorBarcodeScanner.ZXing.JS/zxingjs.index.min.js"></script>
<script src="https://github.com/sabitertan/BlazorBarcodeScanner/raw/master/_content/BlazorBarcodeScanner.ZXing.JS/BlazorBarcodeScanner.js"></script>
Add reference to your .razor
page/component for this library
@using BlazorBarcodeScanner.ZXing.JS
Add following component ( with default parameters
) to anywhere you want in your page/component
<BlazorBarcodeScanner.ZXing.JS.BarcodeReader />
or with custom parameters
( below shows default values of parameters)
<BlazorBarcodeScanner.ZXing.JS.BarcodeReader
Title="Scan Barcode from Camera"
StartCameraAutomatically="false"
ShowStart="true"
ShowReset="true"
ShowToggleTorch = "true"
ShowVideoDeviceList="true"
VideoWidth="300"
VideoHeight="200"
/>
Note that ShowToggleTorch
is an experimental feature.
The library raises a custom event, whenever the barcode scanner sucessfully decoded a value from video stream. You can attach to that event using the component's Blazor EventCallback
named OnBarcodeReceived
.
See the corresponding fragments in the code blocks below:
<BlazorBarcodeScanner.ZXing.JS.BarcodeReader
...
OnBarcodeReceived="LocalReceivedBarcodeText"
/>
private string LocalBarcodeText;
private void LocalReceivedBarcodeText(BarcodeReceivedEventArgs args)
{
this.LocalBarcodeText = args.BarcodeText;
StateHasChanged();
}
In case you need to react on changed decoding states (e.g. hide and display the camera view in your page), you can hook up to this callback.
Library raises this event when there is a generic error happens, for example no video source available or user didn't give permissions.
Library raises this event when an error happens while decoding.
Library raises this event when the list of available input devices changes.
Library raises this event when the selected video device changes.
In some applications it might be useful to take a still image of the video stream while decoding. Therefor the component features an API call to capture such an image as base64 encoded JPEG image.
<BlazorBarcodeScanner.ZXing.JS.BarcodeReader @ref="_reader"
...
/>
<button @onclick="OnGrabFrame">Grab image</button>
<!-- If there is no source URL, we hide the image to avoid he "broken image" icons... -->
<img src="https://github.com/sabitertan/BlazorBarcodeScanner/raw/master/@_img" style="@(string.IsNullOrWhiteSpace(_imgSrc) ? "display:none;" : "")" />
...
private BarcodeReader _reader;
private string _img = string.Empty;
private void OnGrabFrame(MouseEventArgs args)
{
_imgSrc = await _reader.Capture();
StateHasChanged();
}
In some applications it might be useful to take a still image of the frame that just decoded the last barcode.
This functionality can be enabled by setting the DecodedPictureCapture
attribute to true
. This will cause the component to store last image successfully decoded.
Upon sucessful deciding (e.g. reception of OnCodeReceived
), the picture can be accessed by invoking CaptureLastDecodedPicture
.
Warning: Bear in mind that capturing those pictures might impair performance, CPU load or battery life.
While keeping resolution low speeds up image processing, it might yield poor detection performance due to the limited image quality.
In order to allow the application to trade speed for quality, the stream resolution can be set by the application through the following custom parameters
:
If set to null
or 0
, a default (browser dependent?) resolution is applied (e.g. 640px by 480px). If set to any number >0
, the camera stream is requested with the given setting. The settings are used as ideal
constraint for getUserMedia
(see constraints doc. Doing so allows for achieving highest resolution by requesting rediculous high numbers for either dimension, causing the browser to fall back to the maximum feasable for the device of choice.
Warning: While increasing the stream resolution might improve your application's code reading performance, it might greatly affect the over all user experience (e.g. through a drop of the frame rate, increased CPU usage, bad battery life, ...)
This library uses auto-detect feature of zxing-js library. It supports variety of barcode types. For more information: zxing-js supported types
This library uses Media API's ImageCapture, this is an experimental feauture on Firefox. You may want to implement ImageCapture Polyfill in order to use image capturing feature.