Zxing Forms Mobile的问题是无法扫描黑色背景、白色qr码。我已经尝试过扫描黑色qr码,白色背景,它工作。我的测试设备是安卓系统。
我试着用我在游戏商店里找到的扫描仪扫描白色qr码,它很有效。所以qr码还不错。
我已经尝试了MobileBackodeScanningOptions中的所有变体。
var options = new MobileBarcodeScanningOptions
{
UseNativeScanning = true,
TryHarder = true,
TryInverted = true,
AutoRotate = true,
DisableAutofocus = false,
UseFrontCameraIfAvailable = false,
DelayBetweenAnalyzingFrames = 150,
InitialDelayBeforeAnalyzingFrames = 300,
DelayBetweenContinuousScans = 1000,
PossibleFormats = new List<BarcodeFormat>
{
BarcodeFormat.QR_CODE,
}
};
那么,有什么可以解决的吗?
试着在qr中放一个框架,这样我就可以扫描了。
这对我工作
这不是