Reputation: 25
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
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 :
Upvotes: 0