3. ZXing.net 识别一图多个二维码

       //  fileUrl :为图片绝对路径。

         using (FileStream fs = new FileStream(fileUrl, FileMode.Open))
            {
                QRCodeMultiReader qc = new QRCodeMultiReader();
                Image image = Image.FromStream(fs);
                Bitmap bitmap = new Bitmap(image);
                LuminanceSource source = new BitmapLuminanceSource(bitmap);
                BinaryBitmap binarybitmap = new BinaryBitmap(new HybridBinarizer(source));
                IDictionary hints = new Dictionary();
                hints.Add(DecodeHintType.CHARACTER_SET, "UTF-8");
                hints.Add(DecodeHintType.TRY_HARDER, "3");
                Result[] r = qc.decodeMultiple(binarybitmap, hints);
                foreach (Result res in r)
                {
                    Console.WriteLine(res.Text );
                }
            }

你可能感兴趣的:(C#)