Hi - I am submitting the attached QRCode (I have tried several from many sources with same result) to capture readbarcodes and it does not recognize any QRCode barcodes.
The api works fine for me with several other types of barcodes. I don't get any error with the QRCode - just nothing found.
This is java - but it will give you an idea of the current settings I use. Although I have tried almost everything under the sun
propList.add(new ReadBarcodeRequest.ServiceProp("Env", "D"));
propList.add(new ReadBarcodeRequest.ServiceProp("Mode", "Enhanced"));
propList.add(new ReadBarcodeRequest.ServiceProp("Orientation", "HorizontalVertical"));
propList.add(new ReadBarcodeRequest.ServiceProp("Decode", "true"));
propList.add(new ReadBarcodeRequest.ServiceProp("Characters", "46"));
propList.add(new ReadBarcodeRequest.ServiceProp("MinHeight", "0"));
propList.add(new ReadBarcodeRequest.ServiceProp("ScanDistance", "5"));
propList.add(new ReadBarcodeRequest.ServiceProp("BarcodeTypes", "Addon2,Addo...
(the list of barcodes has all the available barcode types - I've also tried with just QRCode but no difference in results)
propList.add(new ReadBarcodeRequest.ServiceProp("UseChecksum", true));
propList.add(new ReadBarcodeRequest.ServiceProp("UseRegion", ""));