ZXingBlazor 0.2.6
See the version list below for details.
dotnet add package ZXingBlazor --version 0.2.6
NuGet\Install-Package ZXingBlazor -Version 0.2.6
<PackageReference Include="ZXingBlazor" Version="0.2.6" />
paket add ZXingBlazor --version 0.2.6
#r "nuget: ZXingBlazor, 0.2.6"
// Install ZXingBlazor as a Cake Addin #addin nuget:?package=ZXingBlazor&version=0.2.6 // Install ZXingBlazor as a Cake Tool #tool nuget:?package=ZXingBlazor&version=0.2.6
ZXing Blazor Component 0.2.6
English | <a href="README.zh-CN.md">中文</a> | <a href="https://blazor.app1.es/"> Orther Blazor components</a>
Introduction
This project is a Blazor component library packaged with ZXing, Support barcode, QR code, PDF417 format.
Demo
https://zxingblazorwasm.app1.es
Nuget
https://www.nuget.org/packages/ZXingBlazor/
Instructions:
NuGet install pack
ZXingBlazor
_Imports.razor or Razor page
@using ZXingBlazor.Components
Razor page
Razor
https://github.com/densen2014/ZXingBlazor/blob/master/Demo.Server/Pages/Index.razor<b>Result:</b> <br /> <pre>@BarCode</pre> <BarcodeReader ScanResult="ScanResult" /> @code{ /// <summary> /// BarCode /// </summary> public string? BarCode { get; set; } private void ScanResult(string e) { BarCode = e; ShowScanBarcode = !ShowScanBarcode; } }
Screenshot
New Components
Handwritten 2020.10.05
ImageViewer 2022.3.6
Updates
2022.11.23 Add optiones
- Pdf417Only: decode only Pdf417 format
- Decodeonce: decode Once or Decode Continuously, default is Once
- DecodeAllFormats: decodde All Formats, performance is poor, you can set options.formats to customize specify the encoding formats. The default is false
2022.3.6 Upgrade to js isolated version, add image browser Viewer component, and upgrade demo project to net6 format
2021.5.13 BarcodeReader supports defining button text and supports multiple languages
now support set button text: code https://github.com/densen2014/ZXingBlazor/blob/master/Demo.Server/Pages/IndexEN.razor demo https://zxingblazor.app1.es/
<BarcodeReader ScanResult="((e) => { BarCode=e; ShowScanBarcode = !ShowScanBarcode; })"
ShowScanBarcode="ShowScanBarcode"
Close="(()=>ShowScanBarcode=!ShowScanBarcode)"
ScanBtnTitle="Scan"
ResetBtnTitle="Reset"
CloseBtnTitle="Close"
SelectDeviceBtnTitle="Select Device"
/>
Participate in contribution
- Fork this project
- Create new Feat_xxx branch
- Submit the code
- New Pull Request
ZXing Blazor 扫码组件 0.2.5
<a href="README.md">English</a> |中文 | <a href="https://blazor.app1.es/"> 其他 Blazor 组件</a>
项目介绍
本项目是利用 ZXing 进行封装的 Blazor 组件库, 支持条码,二维码,PDF417格式.
演示地址
ssr https://zxingblazor.app1.es
wasm https://zxingblazorwasm.app1.es
Nuget 包安装
https://www.nuget.org/packages/ZXingBlazor/
使用步骤:
安装 NuGet 包
ZXingBlazor
_Imports.razor 或者 Razor 页面引用
@using ZXingBlazor.Components
Razor 页面代码
Razor
https://github.com/densen2014/ZXingBlazor/blob/master/Demo.Server/Pages/Index.razor<b>Result:</b> <br /> <pre>@BarCode</pre> <BarcodeReader ScanResult="ScanResult" /> @code{ /// <summary> /// BarCode /// </summary> public string? BarCode { get; set; } private void ScanResult(string e) { BarCode = e; ShowScanBarcode = !ShowScanBarcode; } }
项目截图
新加模块
手写签名 Handwritten 组件 2020.10.05
图片浏览器Viewer 组件 2022.3.6
更新
2022.11.23 添加选项
- Pdf417Only: 只解码 Pdf417 格式 / decode only Pdf417 format
- Decodeonce: 单次|连续解码,默认单次 / Decode Once or Decode Continuously, default is Once
- DecodeAllFormats: 解码所有编码形式,性能较差, 开启后可用 options.formats 指定编码形式.默认为 false | Decodde All Formats, performance is poor, you can set options.formats to customize specify the encoding formats. The default is false
2022.3.6 升级为js隔离版本,添加图片浏览器 Viewer组件, 演示工程升级为net6格式
2021.5.13 BarcodeReader 支持定义按钮文本,支持多语言
定义按钮文本: code https://github.com/densen2014/ZXingBlazor/blob/master/Demo.Server/Pages/IndexEN.razor demo https://zxingblazor.app1.es/
<BarcodeReader ScanResult="((e) => { BarCode=e; ShowScanBarcode = !ShowScanBarcode; })"
ShowScanBarcode="ShowScanBarcode"
Close="(()=>ShowScanBarcode=!ShowScanBarcode)"
ScanBtnTitle="Scan"
ResetBtnTitle="Reset"
CloseBtnTitle="Close"
SelectDeviceBtnTitle="Select Device"
/>
参与贡献
- Fork 本项目
- 新建 Feat_xxx 分支
- 提交代码
- 新建 Pull Request
Product | Versions 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. |
-
net6.0
- Microsoft.AspNetCore.Components.Web (>= 6.0.0)
-
net7.0
- Microsoft.AspNetCore.Components.Web (>= 7.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on ZXingBlazor:
Package | Downloads |
---|---|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
BootstrapBlazor.Densen.All
Blazor 组件懒人包 |
|
Oarw.Blazor.InputScan
Provides an input control for use in a blazor form that combines multiple meethods of barcode and QR code scanning. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.1.5 | 4,227 | 7/20/2024 | |
1.1.4 | 16,524 | 12/9/2023 | |
1.1.3 | 2,262 | 12/2/2023 | |
1.1.2 | 654 | 12/2/2023 | |
1.1.1 | 658 | 12/2/2023 | |
1.1.0 | 1,412 | 11/15/2023 | |
1.0.10 | 1,620 | 11/8/2023 | |
1.0.9 | 657 | 11/7/2023 | |
1.0.8 | 1,067 | 11/5/2023 | |
1.0.7 | 696 | 11/5/2023 | |
1.0.6 | 774 | 11/2/2023 | |
1.0.5 | 621 | 11/2/2023 | |
1.0.4 | 771 | 11/1/2023 | |
1.0.3 | 6,665 | 8/15/2023 | |
1.0.2 | 990 | 8/15/2023 | |
1.0.1 | 2,100 | 8/14/2023 | |
1.0.0 | 16,827 | 6/7/2023 | |
0.2.7 | 19,482 | 1/26/2023 | |
0.2.6 | 8,833 | 11/24/2022 | |
0.2.5 | 1,501 | 11/22/2022 | |
0.2.4 | 1,095 | 11/22/2022 | |
0.2.3 | 538,458 | 3/31/2022 | |
0.2.2 | 1,347 | 3/29/2022 | |
0.2.1 | 1,268 | 3/27/2022 | |
0.2.0 | 8,194 | 3/6/2022 | |
0.1.6 | 34,772 | 5/13/2021 | |
0.1.5 | 1,686 | 2/26/2021 | |
0.1.4 | 1,590 | 10/5/2020 | |
0.1.3 | 1,421 | 10/5/2020 | |
0.1.2 | 1,364 | 9/26/2020 | |
0.1.0 | 1,617 | 9/25/2020 |