public ZxingScanner(ZxingViewController parent) { this.parent = parent; this.reader = new MultiFormatReader { Hints = new Hashtable { { DecodeHintType.POSSIBLE_FORMATS, new ArrayList { BarcodeFormat.UPC_A, BarcodeFormat.UPC_E, BarcodeFormat.CODE_128, BarcodeFormat.CODE_39, BarcodeFormat.EAN_13, BarcodeFormat.EAN_8, BarcodeFormat.QR_CODE } } , { DecodeHintType.TRY_HARDER, true } } }; }
public ZxingScanner (ZxingViewController parent) { this.parent = parent; this.reader = new MultiFormatReader { Hints = new Hashtable { { DecodeHintType.POSSIBLE_FORMATS, new ArrayList { BarcodeFormat.UPC_A, BarcodeFormat.UPC_E , BarcodeFormat.CODE_128, BarcodeFormat.CODE_39, BarcodeFormat.EAN_13, BarcodeFormat.EAN_8, BarcodeFormat.QR_CODE } } , { DecodeHintType.TRY_HARDER, true } } }; }