BlazorBarcodeScanner.ZXing.JS 1.0.4

dotnet add package BlazorBarcodeScanner.ZXing.JS --version 1.0.4
NuGet\Install-Package BlazorBarcodeScanner.ZXing.JS -Version 1.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BlazorBarcodeScanner.ZXing.JS" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorBarcodeScanner.ZXing.JS --version 1.0.4
#r "nuget: BlazorBarcodeScanner.ZXing.JS, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BlazorBarcodeScanner.ZXing.JS as a Cake Addin
#addin nuget:?package=BlazorBarcodeScanner.ZXing.JS&version=1.0.4

// Install BlazorBarcodeScanner.ZXing.JS as a Cake Tool
#tool nuget:?package=BlazorBarcodeScanner.ZXing.JS&version=1.0.4

Nuget build

BlazorBarcodeScanner

Barcode Scanner component for Blazor using zxing-js Interop

Demo

https://sabitertan.github.io/BlazorBarcodeScanner/

Prerequisites

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.

Installation

1. NuGet packages

Install-Package BlazorBarcodeScanner.ZXing.JS

or

dotnet add package BlazorBarcodeScanner.ZXing.JS

2. Refence to JS libraries

Add following lines to wwwroot\index.html (for server side _Host.cshtml) before </body> tag.

    <script src="_content/BlazorBarcodeScanner.ZXing.JS/zxingjs.index.min.js"></script>
    <script src="_content/BlazorBarcodeScanner.ZXing.JS/BlazorBarcodeScanner.js"></script>

Usage

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.

Receiving callbacks

OnBarcodeReceived

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();
    }
OnDecodingChanged

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.

OnErrorReceived

Library raises this event when there is a generic error happens, for example no video source available or user didn't give permissions.

OnNotFoundReceived

Library raises this event when an error happens while decoding.

VideoInputDevicesChanged

Library raises this event when the list of available input devices changes.

SelectedVideoInputIdChanged

Library raises this event when the selected video device changes.

Capturing a picture from the stream

Direct capture

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>
    
    <img src="@_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();
    }
Retrieving the picture for the last code decoded

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.

Setting stream quality

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:

  • StreamWidth
  • StreamHeight

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, ...)

Supported Formats

This library uses auto-detect feature of zxing-js library. It supports variety of barcode types. For more information: zxing-js supported types

ImageCapture Support

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.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 11,114 11/18/2023
1.0.3 34,646 2/25/2023
1.0.2 2,891 2/19/2023
1.0.1 218 2/17/2023
1.0.0 2,420 12/25/2022
0.2.8 13,610 5/16/2022
0.2.7 7,382 1/23/2022
0.2.6 604 1/11/2022
0.2.5 2,245 11/10/2021
0.2.4 2,736 5/26/2021
0.2.3 404 5/17/2021
0.2.2 407 4/11/2021
0.2.1 339 4/10/2021
0.2.0 746 1/27/2021
0.1.2 661 8/12/2020
0.1.1 570 8/9/2020
0.1.0 500 8/8/2020