DanialDP
DanialDP

Reputation: 25

Decode QR-Code in WPF By Zxing

What is the proper way to decode QR Code from Bitmap Image?

 IBarcodeReader reader = new BarcodeReader();
 var barcodeBitmap = (Bitmap)Bitmap.FromFile("output.jpg");
 var result = reader.Decode(barcodeBitmap);

This is QR Code Decoding in C# With ZXing.

Thanks in advance for your help!

Upvotes: 0

Views: 3183

Answers (1)

ViVi
ViVi

Reputation: 4464

Install .NET QR Code Barcode Reader & Scanner from http://www.barcodelib.com/net_barcode_reader/barcodes/qrcode.html

I have seen the same working in one of my clients WPF projects. You can give it a try.

Features :

  • Easily read & scan QR-Code barcodes in .NET applications.
  • Quickly scan & decode QR Code 2d barcodes from specified area inside the image document.
  • Decoding & reading QR Code barcode images in JPEG, GIF, PNG, BMP, TIFF file formats.
  • 100% build in C#.NET, complying with .NET 2.0 and later versions.
  • Complete sample C#.net, VB.net sample codes for Visual C# & VB.NET developers.
  • Mature & reliable QR Code .NET Barcode Reader Component since 2003.

Upvotes: 0

Related Questions