我使用zxing.net.mobile在UWP中内置了这个小型扫描仪应用程序,并且在使用前置摄像头时找不到预览显示的方法。
目前一切正常,只是很难将QR码对准相机,因为移动是反向的,而不像镜子中那样。 我在互联网上找不到任何东西,所有结果都涉及android或xamarin,这不是我想要的。如果需要任何代码或图片,请询问。任何帮助将不胜感激
var options = new ZXing.Mobile.MobileBarcodeScanningOptions { TryHarder = true, AutoRotate = true, InitialDelayBeforeAnalyzingFrames = 3000, UseFrontCameraIfAvailable = true};
options.PossibleFormats = new List<BarcodeFormat>() {
BarcodeFormat.QR_CODE };
var scanner = new ZXing.Mobile.MobileBarcodeScanner
{
TopText = "Turēt, lai noskenētu."
//BottomText = "Tally Scan"
};
var result = await scanner.Scan(options);