ZXing QR Code Reader解码函数中的空值
Null value in ZXing QR Code Reader decode function
我的要求是从扫描的图像中扫描二维码。为此,我正在使用 ZXing dll。扫描图像为 PNG 格式,大小为 3 至 5 MB。我正在使用同一文档的图像。但是 Zxing 解码方法扫描一张图像的二维码而扫描另一张图像失败。谁能解决这个问题。
我的代码如下
Bitmap bitmap = new Bitmap(path);
BarcodeReader reader = new BarcodeReader { AutoRotate = true, TryHarder = true };
Result result = reader.Decode(bitmap);
string decodedData = result.Text;
扫描的图像似乎有问题。
我的要求是从扫描的图像中扫描二维码。为此,我正在使用 ZXing dll。扫描图像为 PNG 格式,大小为 3 至 5 MB。我正在使用同一文档的图像。但是 Zxing 解码方法扫描一张图像的二维码而扫描另一张图像失败。谁能解决这个问题。
我的代码如下
Bitmap bitmap = new Bitmap(path);
BarcodeReader reader = new BarcodeReader { AutoRotate = true, TryHarder = true };
Result result = reader.Decode(bitmap);
string decodedData = result.Text;
扫描的图像似乎有问题。